Skip to content
  • To be a member of the hashpwn community, you must read and follow all forum rules. Repeated violations of these rules will result in a ban.

    5 6
    5 Topics
    6 Posts
    cycloneC
    Terms of Service & Privacy Policy Effective Date: Aug 31, 2025 Welcome to hashpwn.net (“we,” “our,” or “us”). By accessing or using hashpwn.net or any of its subdomains (collectively, the “Services”), you agree to comply with and be bound by these Terms of Service. This includes, but is not limited to, the forum and any Services we may provide under the hashpwn.net domain. If you do not agree, please discontinue use of the Services. 1. Eligibility You must be at least 18 years old to register for or use any hashpwn.net Services. By using our Services, you represent that you meet this requirement. 2. User Conduct When using any hashpwn.net Service, you agree not to: Post, share, or request personally identifiable information (PII). Share, request, or distribute illegally obtained data (e.g., combo lists, stolen data, etc). Engage in hate speech, harassment, or unlawful activities. Attempt to compromise, disrupt, or misuse any Service we provide. Our Services are intended for ethical cybersecurity research, discussion, and learning. Illegal activity is strictly prohibited. 3. User Content You retain ownership of any content you post, upload, or submit to hashpwn.net Services. By submitting content, you grant hashpwn.net a non-exclusive, worldwide license to store, display, and distribute your content as necessary to operate and provide the Services. Requests for deletion of publicly posted content will be honored, except in rare cases where retention is required for legal, security, moderation, or administrative reasons (e.g., evidence of abuse). Account deletion and personal data removal requests will always be honored. 4. Privacy & Data Collection We respect your privacy. We collect basic technical information such as IP address, cookies, browser type, and usage analytics. We use this information only for site functionality, security, and moderation. We may log usage data to maintain service quality. We do not sell, rent, or share your information with third parties for advertising or marketing purposes. Users may request removal of their personal data. 5. Disclaimer of Warranties All Services provided by hashpwn.net are offered “as is” and without warranties of any kind, whether express or implied. We do not guarantee uptime, availability, or error-free operation for any Service. Use of hashpwn.net Services is at your own risk. 6. Limitation of Liability To the fullest extent permitted by law, hashpwn.net, its owners, administrators, moderators, and affiliates are not liable for any damages arising from use of our Services, including but not limited to loss of data, downtime, security issues, or service interruptions. 7. Termination We reserve the right to suspend, restrict, or terminate accounts or access to any hashpwn.net Service at our discretion for violations of these Terms or other reasons deemed necessary to protect the community and infrastructure. 8. Changes to the Terms We may update these Terms at any time. Changes will be posted on this page with a new effective date. Continued use of our Services after updates are posted constitutes acceptance of the revised Terms. 9. Contact For questions, concerns, or requests, please contact: @cyclone (Admin/Owner)
  • This section is dedicated to paid offers, services, and opportunities. Please adhere strictly to the forum rules when posting. All transactions and discussions must maintain a professional tone, and any violation of guidelines will result in penalties. Read the rules carefully before participating.
    https://forum.hashpwn.net/category/1/forum-rules-must-read

    You will need to be granted access status to participate in the Paid Section.

    14 4k
    14 Topics
    4k Posts
    No new posts.
  • 38 Topics
    258 Posts
    A1131A
    -m2611 18443_found.txt 207268_left.zip
  • General discussions that don't fit in other categories. All topics must still follow forum rules.

    17 149
    17 Topics
    149 Posts
    cycloneC
    Gen Z Failing at Identifying Phishing Attacks [image: 1759287941489-dc1120f1-c2b2-443c-a382-9828a293be66-image.png] A new global survey from Yubico reveals that Gen Z, those born between 1997–2012, is the most vulnerable group to phishing attacks, with 62% admitting to engaging with a phishing message in the past year, and are most likely to click on phishing links, attachments, or scams, with AI-powered social engineering attacks driving a new wave of deepfakes and voice-clone phishing. The 2025 Global State of Authentication Survey, covering 18,000 participants across nine countries, found that: 44% of all respondents interacted with a phishing attempt in the past year. 70% believe AI has made phishing more effective, and 78% say attacks have grown more sophisticated. 54% of people shown a phishing email believed it was genuine or were unsure, highlighting the rising danger of AI-crafted scams. Only 48% of companies enforce MFA, and 40% of workers report no cybersecurity training at all. Sources: https://www.yubico.com/press-releases/cybersecurity-wakeup-gen-z-tops-the-list-for-falling-for-phishing-attacks https://www.techradar.com/pro/security/most-people-still-cant-identify-a-phishing-attack-written-by-ai-and-thats-a-huge-problem-survey-warns
  • Discuss useful tools related to hash cracking. Do not upload binaries or post links to malicious files.
    Follow Posting Template:
    https://forum.hashpwn.net/post/68

    44 144
    44 Topics
    144 Posts
    A1131A
    #!/bin/bash # simple script to save your time on file operations while cracking vBulletin < 3.8.5 hashes without salts using hashcat # popular types of vBulletin salt - ?a?a?a, ?h?h?h?h?h?h, ?d?d?d?d?d # download hashgen - https://github.com/cyclone-github/hashgen (used to convert $[HEX] hashes with colon-containing salts and generating hashed wordlist) # Function to read file paths with validation read_file_path() { local prompt="$1" local result_var="$2" local path while true; do read -r -p "$prompt" path if [ -f "$path" ]; then # Use eval to set the variable passed by name eval "$result_var=\"$path\"" break else echo "ERROR: File not found: $path. Please try again." fi done } echo "--- Interactive vBulletin Salt Cracker Configuration ---" # --- Input Acquisition --- # 1. Hash list path read_file_path "Enter the path to the hash list (e.g., hashlists/main.txt): " HASHLIST_PATH # 2. Wordlist path read_file_path "Enter the path to the wordlist (e.g., wordlists/top1000.txt): " WORDLIST_PATH # 3. Mask (optional, with default value) read -r -p "Enter the mask for salt cracking (e.g., ?h?h?h?h?h?h) [Default: ?a?a?a]: " CRACKING_MASK if [ -z "$CRACKING_MASK" ]; then CRACKING_MASK="?a?a?a" fi # Generate dynamic paths WORDLIST_BASENAME=$(basename "$WORDLIST_PATH") HASHED_WORDLIST_PATH="md5_wordlists/${WORDLIST_BASENAME}.md5" echo "--- Settings Confirmed ---" echo "Hash List: $HASHLIST_PATH" echo "Word List: $WORDLIST_PATH" echo "Mask: $CRACKING_MASK" echo "Hashed Word List Output: $HASHED_WORDLIST_PATH" echo "------------------------------" sleep 2s # --- Tool Verification --- if ! command -v hashcat &> /dev/null; then echo "ERROR: hashcat not found. Ensure it is in your PATH." exit 1 fi if [ ! -f ./hashgen ]; then echo "ERROR: The ./hashgen file was not found. Ensure it is in the current directory and is executable." exit 1 fi # --- STEP 1: Potfile Cleanup --- echo "--- STEP 1: Cleaning potfile ---" if [ -f "hashed.pot" ]; then echo "Creating backup: hashed.pot -> hashed.pot.bak" cat hashed.pot >> hashed.pot.bak 2>/dev/null else echo "hashed.pot not found, skipping backup." fi echo '' > hashed.pot sleep 3s # --- STEP 2: Generate Hashed Wordlist --- echo "--- STEP 2: Generating hashed wordlist ---" mkdir -p md5_wordlists ./hashgen -m 0 -w "$WORDLIST_PATH" -o "$HASHED_WORDLIST_PATH" sleep 3s # --- STEP 3: Crack Salts --- echo "--- STEP 3: Cracking salts (Mode -m0 -a6) ---" hashcat -d1 -m0 -a6 -w4 --hwmon-temp-abort=95 --potfile-path=hashed.pot "$HASHLIST_PATH" "$HASHED_WORDLIST_PATH" "$CRACKING_MASK" --remove sleep 3s # --- STEP 4: Prepare Hashes for Wordlist Cracking --- echo "--- STEP 4: Preparing hashes for cracking (m2611 format) ---" sleep 3s # 1. Process NON-HEX lines (already cracked passwords) # Corrected format: HASH:PLAINTEXT (Single colon) grep -v HEX hashed.pot | sed 's/^\(.\{65\}\)/\1:/' | cut -d: -f1,3 | sed -E 's/^(.{32}):(.*)$/\1:\2/' > 2611_to_crack.txt sleep 3s echo "Converting HEX strings" # 2. Convert HEX strings grep HEX hashed.pot | cut -d: -f2 > hex.tmp grep HEX hashed.pot | cut -d: -f1 > hash.txt ./hashgen -m plaintext -w hex.tmp -o hex.txt sleep 3s # 3. Combine HEX hashes and append to 2611_to_crack.txt # Corrected format: HASH:HEX_SALT (Single colon) paste -d : hash.txt hex.txt | sed -E 's/^(.{32}):(.*)$/\1:\2/' >> 2611_to_crack.txt sleep 3s echo "Deleting temporary files" # 4. Remove temporary files rm -f ./{hash.txt,hex.txt,hex.tmp} sleep 3s # --- STEP 5: Crack Hashes with Wordlist (Mode -m2611) --- echo "--- STEP 5: Cracking hashes with wordlist -a0 -m2611 ---" hashcat -d1 -m2611 -a0 -w4 --potfile-path=hashcat.pot.salted 2611_to_crack.txt "$WORDLIST_PATH" sleep 3s # --- STEP 6: Export Cracked Hashes --- echo "--- STEP 6: Writing/Appending last cracked hashes into file ---" hashcat -d1 -m2611 -a0 -w4 -O --hwmon-temp-abort=95 --hwmon-disable --potfile-path=hashcat.pot.salted 2611_to_crack.txt --show > 2611_cracked.txt sleep 3s echo "Done." Preview
  • A collection of hashcat rules, wordlists, useful links to online services, and other resources related to hash cracking and password recovery.
    Follow Posting Template:
    https://forum.hashpwn.net/post/68

    26 177
    26 Topics
    177 Posts
    A1131A
    New concentrator_MT* rules, more benchmarks and download link --> https://a113l.github.io/Hashcracking/ rules ├── a1131 │ ├── A1131-insane-v1.rule │ ├── A1131-insane-v2.rule │ ├── A1131-insane-v3.rule │ ├── A1131-insane-v4.rule │ ├── A1131-IWA.rule │ ├── A1131.rule │ ├── append.rule │ ├── blazing.rule │ ├── concentrator_MT │ ├── concentrator_MT_5000.rule │ ├── concentrator_MT_64.rule │ ├── DietCrackers.rule │ ├── Emojis.rule │ ├── insane-fast.rule │ ├── insane-medium.rule │ ├── insane-slow.rule │ ├── _long.rule │ ├── misty50k.rule │ ├── misty.rule │ ├── _short.rule │ ├── tmesis-specials-num.rule │ ├── top1k.rule │ ├── top5k.rule │ ├── Unicode.rule │ ├── whisper.rule │ ├── wild-fast.rule │ ├── wild-medium.rule │ └── wild-slow.rule ├── aon │ ├── 10-complex-10k.rule │ ├── 10-complex-1k.rule │ ├── 10-complex-50k.rule │ ├── 10-complex-64.rule │ ├── 10-simple-10k.rule │ ├── 10-simple-1k.rule │ ├── 10-simple-50k.rule │ ├── 10-simple-64.rule │ ├── 12-complex-10k.rule │ ├── 12-complex-1k.rule │ ├── 12-complex-50k.rule │ ├── 12-complex-64.rule │ ├── 12-simple-10k.rule │ ├── 12-simple-1k.rule │ ├── 12-simple-50k.rule │ ├── 12-simple-64.rule │ ├── 14-complex-10k.rule │ ├── 14-complex-1k.rule │ ├── 14-complex-21k.rule │ ├── 14-complex-64.rule │ ├── 14-simple-10k.rule │ ├── 14-simple-1k.rule │ ├── 14-simple-50k.rule │ ├── 14-simple-64.rule │ ├── 8-complex-10k.rule │ ├── 8-complex-1k.rule │ ├── 8-complex-50k.rule │ ├── 8-complex-64.rule │ ├── 8-simple-10k.rule │ ├── 8-simple-1k.rule │ ├── 8-simple-50k.rule │ └── 8-simple-64.rule ├── append │ ├── [email protected] │ ├── append_email_domains(giveen).rule │ ├── append.!!.rule │ ├── append_sym.rule │ └── appendYear.rule ├── blandyuk │ ├── blandyuk_accent_rep.rule │ ├── blandyuk_append_sym_year.rule │ ├── blandyuk_basicNoOriginal.rule │ ├── blandyuk_basic.rule │ ├── blandyuk_combined.rule │ ├── blandyuk_digit_ins_2.rule │ ├── blandyuk_digit_ins_3.rule │ ├── blandyuk_digit_ins_4.rule │ ├── blandyuk_facebook.rule │ ├── blandyuk_la_ins12.rule │ ├── blandyuk_la_ins16.rule │ ├── blandyuk_la_rep12.rule │ ├── blandyuk_la_rep16.rule │ ├── blandyuk_leet_tog_num.rule │ ├── blandyuk_names_ins.rule │ ├── blandyuk_prepend_sym.rule │ ├── blandyuk.rule │ ├── blandyuk_sym1_ins.rule │ ├── blandyuk_sym2_ins.rule │ ├── blandyuk_sym_ins.rule │ ├── blandyuk_sym_pre_app.rule │ ├── blandyuk_sym_rep.rule │ ├── blandyuk_ua_ins12.rule │ ├── blandyuk_ua_ins16.rule │ ├── blandyuk_ua_rep12.rule │ ├── blandyuk_ua_rep16.rule │ ├── blandyuk_word3_ins.rule │ ├── blandyuk_word4_ins.rule │ ├── blandyuk_word5_ins.rule │ └── blandyuk_years_ins.rule ├── buka │ └── buka_400k.rule ├── cake │ ├── append-firstnames.rule │ ├── CakeV1.rule │ ├── CakeV2.rule │ ├── email.rule │ └── rot13.rule ├── ciphers │ └── caesar.rule ├── clem9669 │ ├── clem9669_case.rule │ ├── clem9669_large.rule │ ├── clem9669_medium.rule │ ├── clem9669_small.rule │ ├── emojis.rule │ ├── password_ruled.txt │ └── README.md ├── collection │ ├── collection100k.rule │ ├── collection1k.rule │ ├── collection500k.rule │ ├── collection50k.rule │ ├── collection5k.rule │ └── README.md ├── dipepe │ ├── Dipepe_emails_top1k_v4.0.rule │ ├── Dipepe_Extract_range_1.rule │ ├── Dipepe_full_names_to_emails_top100.rule │ └── Dipepe_Omit_range_1.rule ├── dive │ ├── dive.rule │ ├── dive.rule.aa │ ├── dive.rule.ab │ ├── dive.rule.ac │ └── dive.rule.ad ├── fordy │ ├── fordy10k.rule │ ├── fordy50k.rule │ ├── FordyBigBoy.rule │ ├── FordyCombined.rule │ ├── fordyv1.rule │ ├── fordyv2a.rule │ ├── fordyv2b.rule │ ├── Fordyv2.rule │ ├── Fordyv3-1Mil.rule │ ├── Fordyv3-250k.rule │ ├── Fordyv3-2Mil.rule │ ├── Fordyv3-500k.rule │ ├── Fordyv4a.rule │ └── Fordyv4b.rule ├── hashpwn │ ├── hashpwn_1500.rule │ ├── hashpwn_250.rule │ ├── hashpwn_3000.rule │ ├── hashpwn_5000.rule │ └── hashpwn_500.rule ├── hob0rules │ ├── d3adhob0.rule │ ├── hob064.rule │ └── README.md ├── hybrid │ ├── append_d_passthrough.rule │ ├── append_d.rule │ ├── append_ds_passthrough.rule │ ├── append_ds.rule │ ├── append_du_passthrough.rule │ ├── append_du.rule │ ├── append_dus_passthrough.rule │ ├── append_dus.rule │ ├── append_hl_passthrough.rule │ ├── append_hl.rule │ ├── append_hu_passthrough.rule │ ├── append_hu.rule │ ├── append_ld_passthrough.rule │ ├── append_ld.rule │ ├── append_lds_passthrough.rule │ ├── append_lds.rule │ ├── append_ldu_passthrough.rule │ ├── append_ldu.rule │ ├── append_ldus_passthrough.rule │ ├── append_ldus.rule │ ├── append_l_passthrough.rule │ ├── append_l.rule │ ├── append_ls_passthrough.rule │ ├── append_ls.rule │ ├── append_lu_passthrough.rule │ ├── append_lu.rule │ ├── append_lus_passthrough.rule │ ├── append_lus.rule │ ├── append_s_passthrough.rule │ ├── append_s.rule │ ├── append_u_passthrough.rule │ ├── append_u.rule │ ├── append_us_passthrough.rule │ ├── append_us.rule │ ├── prepend_d_passthrough.rule │ ├── prepend_d.rule │ ├── prepend_ds_passthrough.rule │ ├── prepend_ds.rule │ ├── prepend_du_passthrough.rule │ ├── prepend_du.rule │ ├── prepend_dus_passthrough.rule │ ├── prepend_dus.rule │ ├── prepend_hl_passthrough.rule │ ├── prepend_hl.rule │ ├── prepend_hu_passthrough.rule │ ├── prepend_hu.rule │ ├── prepend_ld_passthrough.rule │ ├── prepend_ld.rule │ ├── prepend_lds_passthrough.rule │ ├── prepend_lds.rule │ ├── prepend_ldu_passthrough.rule │ ├── prepend_ldu.rule │ ├── prepend_ldus_passthrough.rule │ ├── prepend_ldus.rule │ ├── prepend_l_passthrough.rule │ ├── prepend_l.rule │ ├── prepend_ls_passthrough.rule │ ├── prepend_ls.rule │ ├── prepend_lu_passthrough.rule │ ├── prepend_lu.rule │ ├── prepend_lus_passthrough.rule │ ├── prepend_lus.rule │ ├── prepend_s_passthrough.rule │ ├── prepend_s.rule │ ├── prepend_u_passthrough.rule │ ├── prepend_u.rule │ ├── prepend_us_passthrough.rule │ └── prepend_us.rule ├── insidepro │ ├── InsidePro-HashManager.rule │ └── InsidePro-PasswordsPro.rule ├── jabbercracky │ ├── jabbercracky_100k.rule │ ├── jabbercracky_100.rule │ ├── jabbercracky_10k.rule │ ├── jabbercracky_250k.rule │ ├── jabbercracky_500.rule │ ├── jabbercracky_50k.rule │ ├── jabbercracky_50.rule │ ├── jabbercracky_5k.rule │ ├── jabbercracky_append_30k.rule │ ├── jabbercracky_combined.rule │ ├── jabbercracky_phrase_30k.rule │ ├── jabbercracky_poggle_30k.rule │ ├── jabbercracky_post_process.rule │ ├── jabbercracky_prepend_30k.rule │ ├── jabbercracky_short_15.rule │ └── jabbercracky_taggle_30k.rule ├── kaonashi │ ├── haku34K.rule │ ├── kamaji34K.rule │ ├── README.md │ └── yubaba64.rule ├── korelogic │ ├── KoreLogicCombined.rule │ ├── KoreLogicRulesAdd1234_Everywhere.rule │ ├── KoreLogicRulesAdd2006Everywhere.rule │ ├── KoreLogicRulesAdd2010Everywhere.rule │ ├── KoreLogicRulesAddDotCom.rule │ ├── KoreLogicRulesAddJustNumbersLimit8.rule │ ├── KoreLogicRulesAddOnes.rule │ ├── KoreLogicRulesAddShortMonthsEverywhere.rule │ ├── KoreLogicRulesAppend1_AddSpecialEverywhere.rule │ ├── KoreLogicRulesAppend2Letters.rule │ ├── KoreLogicRulesAppend4Num.rule │ ├── KoreLogicRulesAppend6NumbersSpecial.rule.gz │ ├── KoreLogicRulesAppend6Num.rule │ ├── KoreLogicRulesAppend6Num.rule.gz │ ├── KoreLogicRulesAppendCurrentYearSpecial.rule │ ├── KoreLogicRulesAppendJustNumbers.rule │ ├── KoreLogicRulesAppendMonthCurrentYear.rule │ ├── KoreLogicRulesAppendMonthDay.rule │ ├── KoreLogicRulesAppendNumberNumberSpecialTwice.rule │ ├── KoreLogicRulesAppendNumbers_or_Specials_PrependLetter.rule │ ├── KoreLogicRulesAppendSpecial4num.rule │ ├── KoreLogicRulesAppendSpecialNumberNumberNumber.rule │ ├── KoreLogicRulesAppendYears.rule │ ├── KoreLogicRulesDevProdTestUAT.rule │ ├── KoreLogicRulesL33t.rule │ ├── KoreLogicRulesMonthsFullPreface.rule │ ├── KoreLogicRulesPrepend2NumbersAppend2Numbers.rule │ ├── KoreLogicRulesPrepend4LetterMonths.rule │ ├── KoreLogicRulesPrependCAPCAPAppendSpecial.rule │ ├── KoreLogicRulesPrependDaysWeek.rule │ ├── KoreLogicRulesPrependHello.rule │ ├── KoreLogicRulesPrependJustSpecials.rule │ ├── KoreLogicRulesPrependMonthDayYear.rule │ ├── KoreLogicRulesPrependNumNum3LetterMonths.rule │ ├── KoreLogicRulesPrependNumNumNumNum.rule │ ├── KoreLogicRulesPrependNumNumNum.rule │ ├── KoreLogicRulesPrependNumNum.rule │ ├── KoreLogicRulesPrependNumNumSpecial.rule │ ├── KoreLogicRulesPrependRockYou50000.rule │ ├── KoreLogicRulesPrependSeason.rule │ ├── KoreLogicRulesPrependSpecialSpecial.rule │ ├── KoreLogicRulesPrependYears.rule │ ├── KoreLogicRulesReplaceLettersCaps.rule │ ├── KoreLogicRulesReplaceLetters.rule │ ├── KoreLogicRulesReplaceNumbers2Special.rule │ ├── KoreLogicRulesReplaceNumbers.rule │ └── KoreLogicRulesReplaceSpecial2Special.rule ├── masks │ ├── 8char-1l-1u-1d-1s-compliant.hcmask │ ├── 8char-1l-1u-1d-1s-noncompliant.hcmask │ ├── all-in-one-top10.hcmask │ ├── hashcat-default.hcmask │ ├── rockyou-1-60.hcmask │ ├── rockyou-2-1800.hcmask │ ├── rockyou-3-3600.hcmask │ ├── rockyou-4-43200.hcmask │ ├── rockyou-5-86400.hcmask │ ├── rockyou-6-864000.hcmask │ ├── rockyou-7-2592000.hcmask │ └── weakpass.hcmask ├── MISC │ ├── 1940-2017.rule │ ├── 8track.rule │ ├── amaterasu.rule │ ├── auto.rule │ ├── basic_4_mail.rule │ ├── [email protected] │ ├── best64.rule │ ├── Chatbooks.rule │ ├── combinator.rule │ ├── Combined-leetspeak.rule │ ├── cyclone_250.rule │ ├── d3ad0ne.rule │ ├── descrypt.rule │ ├── efensive.rule │ ├── email_by_simplify.rule │ ├── emails_best.rule │ ├── emails.rule │ ├── evil.rule │ ├── expanded-cutb-clean.rule.gz │ ├── full_names_to_emails_top100.rule │ ├── generated2-full.rule │ ├── generated2.rule │ ├── generated3.rule │ ├── generated.rule │ ├── giveen_combo.rule │ ├── hashes-org-rules.rule │ ├── huge.rule │ ├── Incisive-leetspeak.rule │ ├── leetspeak.rule │ ├── lmNTLM.rule │ ├── mail_Milzo.rule │ ├── mail.rule │ ├── new-auto.rule │ ├── newttv1.rule │ ├── n.rule │ ├── omgwtfbbq.rule │ ├── OneRuleToRuleThemAll.rule │ ├── OneRuleToRuleThemStill.rule │ ├── OptimizedUpToDate.rule │ ├── Oscommerce.rule │ ├── passphrase-rule1.rule │ ├── passphrase-rule2.rule │ ├── passwordspro.rule │ ├── Pengo.rule │ ├── pepper.rule │ ├── PrependRockYou60000.rule │ ├── prince_generated.rule │ ├── prince_optimized.rule │ ├── reject.rule │ ├── rockyou-30000.rule │ ├── SHA1Dash.rule │ ├── specific.rule │ ├── test.rule │ ├── tiny.rule │ ├── toggles1.rule │ ├── toggles2.rule │ ├── toggles3.rule │ ├── toggles4.rule │ ├── toggles5.rule │ ├── toprules2020.rule │ ├── unix-ninja_common-leetspeak.rule │ ├── unix-ninja-leetspeak.rule │ ├── uppercase.rule │ ├── whisper.rule │ └── williamsuper.rule ├── nsa-rules │ ├── LICENSE.md │ ├── nsa64NoOriginal.rule │ ├── nsa64.rule │ ├── nsa.hcmask │ ├── _NSAKEY_Combined.rule │ ├── _NSAKEY.v1.dive.rule │ ├── _NSAKEY.v2.dive.rule │ └── README.md ├── nyxgeek │ ├── makeaddress_3digits.rule │ ├── makeaddress_4digits.rule │ ├── nyxgeek-append4.rule │ ├── nyxgeek-emails.rule │ ├── nyxgeek-i1o1.rule │ ├── nyxgeek-i1.rule │ ├── nyxgeek-i2.rule │ ├── nyxgeek-leet.extra.rule │ ├── nyxgeek-leet.multi.rule │ ├── nyxgeek-o1i1.rule │ ├── nyxgeek-o1.rule │ ├── nyxgeek-o2.rule │ ├── nyxgeek-repeater-i.rule │ ├── nyxgeek-weird1.rule │ └── README.md ├── pantagrule │ ├── pantagrule.hashorg.v6.hybrid.rule │ ├── pantagrule.hashorg.v6.one.rule │ ├── pantagrule.hashorg.v6.popular.rule │ ├── pantagrule.hashorg.v6.random.rule │ ├── pantagrule.hashorg.v6.raw1m.rule │ ├── pantagrule.hybrid.royce.rule │ ├── pantagrule.hybrid.rule │ ├── pantagrule.one.royce.rule │ ├── pantagrule.one.rule │ ├── pantagrule.popular.royce.rule │ ├── pantagrule.popular.rule │ ├── pantagrule.random.royce.rule │ └── pantagrule.random.rule ├── probable-wordlists │ ├── ProbWL-197-rule-probable-v2.rule │ ├── ProbWL-26-rule-probable-v2.rule │ ├── ProbWL-51-rule-probable-v2.rule │ └── ProbWL-547-rule-probable-v2.rule ├── README.md ├── robot │ ├── Robot-Best10.rule │ ├── Robot_CurrentBestRules.rule │ ├── Robot_MyFavorite.rule │ ├── Robot_ReverseRules.rule │ ├── Robot_Top1268Rules.rule │ └── Robot_toporder.rule ├── shooter3k │ ├── Shooter3k_8_20_2021.rule │ ├── Shooter3k_8_21_2021Cleaned.rule │ ├── Shooter-LeetSpeak.rule │ └── Shooter-LeetSpeak-With-Passthrough.rule ├── skalman │ ├── skalman_small2.rule │ ├── skalman_small3.rule │ ├── skalmansmall.rule │ ├── skalman_takesuonadate.rule │ └── skalman_test.rule ├── t0xic │ ├── T0XIC_combined.rule │ ├── T0XlC_3.rule │ ├── T0XlC_both.rule │ ├── T0XlC_ins2_basic.rule │ ├── T0XlC_ins2.rule │ ├── T0XlC-insert_00-99_1950-2050_toprules_0_F.rule │ ├── T0XlC_insert_HTML_entities_0_Z.rule │ ├── T0XlC-insert_space_and_special_0_F.rule │ ├── T0XlC-insert_top_100_passwords_1_G.rule │ ├── T0XlC_ins.rule │ ├── T0XlC_rep2.rule │ ├── T0XlC_rep.rule │ ├── T0XlC.rule │ ├── T0XlCv1.rule │ ├── T0XlCv2.rule │ └── TOXIC-10krules.rule ├── techtrip │ ├── techtrip1000.rule │ ├── techtrip_2.rule │ └── techtrip.rule ├── tmesis │ ├── 1-emoji-everywhere.rule │ ├── days-everywhere.rule │ ├── love-everywhere.rule │ └── seasons-everywhere.rule ├── top_n │ ├── top_1500.rule │ ├── top_250.rule │ ├── top_3000.rule │ ├── top_5000.rule │ ├── top_500.rule │ └── top_750.rule └── unicorn ├── DiveIcorn.rule ├── Pantacorn.rule ├── SuperUnicorn.rule ├── TheOneTrueUnicorn.rule ├── Unicorn10k.rule ├── Unicorn1k.rule ├── Unicorn20k.rule ├── Unicorn250.rule ├── Unicorn3k.rule ├── Unicorn5k.rule ├── Unicorn64.rule ├── UnicornCombined.rule ├── UnicornLorge.rule └── UnicornSmol.rule 33 directories, 459 files
  • Forum announcements, comments and feedback.

    4 19
    4 Topics
    19 Posts
    cycloneC
    The Cloudflare phishing warning issue has been resolved. Explanation of the recent Cloudflare phishing notifications: If you've run into a phishing warning while browsing hashpwn or trying to login, it's due to a troll who has been falsely reporting hashpwn URLs to Cloudflare as phishing. See screenshot below: [image: 1759339049287-0df2875e-19c2-45b7-82de-31a9807f453a-image.png] Example report the troll is using to falsely report hashpwn URLs. [image: 1759338824006-3d4abc3b-0683-4cdc-9920-ed8207880fd5-image.png] Submitting false phishing reports is a serious matter and may constitute fraud, harassment, and abuse of service. This behavior has been reported to Cloudflare.

Who's Online [Full List]

7 users active right now (2 members and 5 guests).
cyclone, hashpwn-bot

Board Statistics

Our members have made a total of 4.3k posts in 151 topics.
We currently have 266 members registered.
Please welcome our newest member, foxxysecurenet.
The most users online at one time was 49 on Thursday, December 26, 2024.