Skip to content
  • hashes.com Escrow API Tool

    Hash Cracking
    4
    1 Votes
    4 Posts
    2k Views
    cycloneC
    New version released. https://github.com/cyclone-github/hashes.com-escrow-tool/releases/tag/v1.1.2 v1.1.2; 2025-11-21 fixed redundant new line logic added http timeouts Full Changelog: https://github.com/cyclone-github/hashes.com-escrow-tool/compare/v1.1.1...v1.1.2
  • xiaopan forum

    General Discussion
    1
    0 Votes
    1 Posts
    318 Views
    No one has replied
  • nvflash (nvidia vbios flash tool)

    Tools
    1
    0 Votes
    1 Posts
    804 Views
    No one has replied
  • 1 Votes
    6 Posts
    1k Views
    T
    RAR hash-mode๏ผš23800 23800.txt
  • ๐ŸŽ‰ Happy 1st Birthday, hashpwn! ๐ŸŽ‰

    Announcements & Comments
    5
    0 Votes
    5 Posts
    1k Views
    C
    Hey @cyclone and the whole hashpwn crew โ€” sorry for being 10 days late to the party, but congrats on the 1st anniversary! What youโ€™ve built in just a year is straight-up legendary โ€” a global powerhouse for hash cracking minds. Huge respect for keeping the scene alive, open, and fun. Hereโ€™s to many more years of cracking, sharing, and pushing limits together. Happy Birthday, hashpwn!
  • ~90kk MD5 Hashfile for Debugging and Benchmarking

    Resources
    2
    0 Votes
    2 Posts
    640 Views
    P
    That's great, thank you.
  • wordlists for a specific country

    General Discussion
    3
    0 Votes
    3 Posts
    602 Views
    A1131A
    CN passwords International
  • 41M+ 40hex Hashes

    Standard: MD5, SHA1, SHA256, etc.
    4
    0 Votes
    4 Posts
    1k Views
    V
    I think I did a quick run, just using cpu, currenctly I don't have a gpu, and many sql5 are short in lenght, and also being only numbers. This might help to anyone interested to give a run with only that algo, cleaneaning this kind of specific stuff.
  • 25 Hashes or Less Requests (Windows)

    Pinned Windows: LM, NTLM, DCC, DCC2
    5
    1 Votes
    5 Posts
    2k Views
    cycloneC
    @crack365 said in 25 Hashes or Less Requests (Windows): hashcat -m 1000 john --format=NT john --format=NT-opencl 0589F1147BA9F4948414E55E6CF2CE5C 8A53B66F187C676F601870B88E5F4E4D 69AF03F8B8E64F288131D2CDD62CAF74 539A615622475F3012BD9640D506E8E5 A724A56F02F8AEC08162AE1E7CFF60EA ACA40560CDE197233A22612BFA171057 B0E03A1682720A09A58BDE5DDE19F423 C95A4DC54A57D3ABDF8E04B8CE2FF27C D8B7ED5A849075C04AB341C2FA249F06 E25704E15CC5CF6C1EDA64D92720DF4F 764DB1FE05BF0E6D5E65EEB5DFC69FC9 CA9000D2022576A4ABE77A2344138C76 b0e03a1682720a09a58bde5dde19f423:update159
  • 940k MD5 Hashes

    Standard: MD5, SHA1, SHA256, etc.
    6
    0 Votes
    6 Posts
    1k Views
    N
    -m2600 759_found.txt 206509_left.7z
  • Pro Tips

    Pinned Resources jtr
    14
    4 Votes
    14 Posts
    3k Views
    freerouteF
    Title: hcxcommic. ZeroBeat: ZeroBeat Source: https://github.com/ZerBea/hcxtools Description:It takes as input a 22000 hashcat -o file and a hash file and converts it to a HEX:PLAIN file. Accepted by hashmob if the MIC is in both input files present. That makes it much easier to submit findings to hashmob.net. Download a 22000 left list from hashmob either via web interface (filter by 22000) https://hashmob.net/hashlists/user or by ID (get if via web interface (https://hashmob.net/hashlists/user) I prefer via ID: (12612 is the ID shown in hm web interface: $ wget https://cdn.hashmob.net/hashlists/12589/125892.left Run hashcat against this list and use its -o option to store the findings to file! Either use your own word list $ hashcat -m 22000 -o 12589.found 12589.left wordlist ... Recovered........: 8/3358 (0.24%) Digests (total), 8/3358 (0.24%) Digests (new), 8/2857 (0.28%) Salts ... Or get one from wpa-sec $ wget https://wpa-sec.stanev.org/dict/cracked.txt.gz $ hashcat -m 22000 -o 12589.found 12589.left wordlist Generate the hash file accepted by hm: $ hcxcommic 12589.found 12589.left > hm.found Submit hm.found to hashmob (choose 22000). Note: hasmob marks some hashes as invalid. That's because hashmob has a massif(!) missing new line (\0a) problem! It has been reported.
  • Wordpress v6.8 Bcrypt - hmac-sha384

    General Discussion
    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • Quick Way to Crack VB 2611 Salts

    Scripts
    2
    0 Votes
    2 Posts
    1k Views
    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
  • Terms of Service & Privacy Policy

    Pinned Locked Forum Rules (MUST READ)
    1
    0 Votes
    1 Posts
    933 Views
    No one has replied
  • Import Hashcat Rules into John the Ripper

    John the Ripper
    2
    2 Votes
    2 Posts
    1k Views
    C
    I do it like this since I'm a windows user I go to cygwin64/home/pcname/JtR/run/rules Use e.g. best64.rule file Copy your hashcat rules to best64.rule file and save and you can run your hashcat rules from file best64.rule That way I don't have to edit my config file since I don't use JtR that often
  • 0 Votes
    2 Posts
    749 Views
    D
    A "clean one" I wean that not all third pepole have it. I had a couple but that was along time ago. So if you please. I will be thankful
  • jotti - VirusTotal Alternative

    Network & IP
    2
    1 Votes
    2 Posts
    1k Views
    cycloneC
    New release: v1.0.0; 2025-08-27 - stable v1.0.0 release - enforce Jotti's 250MB max file limit - added upload progress bar - added HTTP client timeout to avoid hangs - added non-zero exit on rate limit - tidied up logic in URL, filename, directory parsing
  • 0 Votes
    13 Posts
    2k Views
    174region1741
    aaNMONeH:Qqwe4566 ogv6TBFe:eyEmme0324
  • hashcat Info

    Pinned Locked hashcat
    2
    1 Votes
    2 Posts
    769 Views
    cycloneC
    update: hashcat v7.1.1 released https://github.com/hashcat/hashcat/releases/tag/v7.1.1 changelog: * changes v7.1.0 -> v7.1.1 ## ## Improvements ## Docker: Add initial support for AMD GPUs when running Hashcat inside Docker using HIP and OpenCL Hardware Monitor: Suppress fan speed warnings for unified memory setups (typically internal GPUs) Testing Framework: Enable hardware monitor to improve testing of memory-heavy algorithms Unit tests: Updated install_modules.sh to use an external module for Digest::MD6 ## ## Bugs ## - Fixed multi-hash handling in LUKS2 and KeePass (KDBX4), while single-hash remained unaffected * changes v7.0.0 -> v7.1.0 ## ## New Algorithms ## ## Endpoint - Added hash-mode: AS/400 DES - Added hash-mode: AS/400 SSHA1 - Added hash-mode: Blockchain, My Wallet, Legacy Wallets - Added hash-mode: Cisco-ISE Hashed Password (SHA256) - Added hash-mode: Keepass4 - Added hash-mode: SAP CODVN H (PWDSALTEDHASH) isSHA512 - Added hash-mode: sm3crypt $sm3$, SM3 (Unix) ## Primitives, KDFs, Libraries - Added hash-mode: BLAKE2b-256 - Added hash-mode: MD6 (256) ## Constructs - Added hash-mode: BLAKE2b-256($pass.$salt) - Added hash-mode: BLAKE2b-256($salt.$pass) - Added hash-mode: sha224($pass.$salt) - Added hash-mode: sha224($salt.$pass) - Added hash-mode: sha224(sha1($pass)) - Added hash-mode: sha224(sha224($pass)) ## ## Improvements ## - Attack-Modes: Use 64-bit counters for amplifier keyspace - Host Memory: Update method to query free host memory using /proc/meminfo when available - Docker: Add initial support for running hashcat inside Docker - Device Memory: Warn instead of waiting on high GPU memory usage - Backends: Enhanced AMD Windows OpenCL and HIP compatibility for legacy models - Rules: Add early syntax check for -j and -k rules - Device Memory: Do not disable hwmon interface by default in speed-only and progress-only mode - JSON output: Refactor Bridge unit reporting for clarity - Backends: Ignore devices from Microsoft OpenCL D3D12 platform - Building: Add MAINTAINER_MODE flag to disable hardcoded CPU optimization flags - Bash: Add missing parameters to bash completion script - Dependencies: Downgraded unrar source from 6.2.7 to 6.0.5 - Benchmark: Update default hash-mode selection - Libraries: DES and Blowfish restructure - Building: Add initial support for OpenBSD and DragonflyBSD ## ## Bugs ## - Fix broken JSON formatting when using the --status-json flag - Fix issue where -k single rules were ignored when used with -a 1 and -S ## ## Python Bridge ## - Fix unsalted hashlist support - Fix the esalt structure, it was too large - Improve support from 1:1 password-to-hash to 1:N password-to-hashes - Improve stand-alone debugging of Python Bridge stubs - Improve salt/esalt debugging of Python Bridge stubs - Enable potfile output by default for -m 73000 and 72000 ## ## Other changes ## - Argon2: Add argon2_init() wrappers to support private address space - Change hash-category for hash-modes 25600, 25800, 28400 and 30600 to HASH_CATEGORY_RAW_HASH_SALTED - Suppress optimization advice in final approach mode - Backend: Split backend_session_begin() into smaller compute-runtime specific functions - Sanity check: Abort if a custom-charset is defined on the command line and a mask file is used - Building: Disable Argon2 optimized path on RISC-V - Shared: improved 32-bit and 64-bit add and multiply overflow helper functions
  • 0 Votes
    9 Posts
    1k Views
    C
    found_119.txt left_2812.txt