Skip to content
  • 41M+ 40hex Hashes

    Standard: MD5, SHA1, SHA256, etc.
    4
    0 Votes
    4 Posts
    850 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
    1k 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
  • 25 Hashes or Less Requests (Standard)

    Pinned Standard: MD5, SHA1, SHA256, etc.
    10
    1 Votes
    10 Posts
    2k Views
    cycloneC
    @crack365 said in 25 Hashes or Less Requests (Standard): 0b06813ab7717dd7423d9bbef3572c91 7e49578820c4dd7c15391fcce4d4312b 37befe5d759b1077abc4f6ebd71feea9 55fdd5a905ad789303eecb65a53a8abb 61ac8215828ad230e5ff964037dc7741 85a76f2c339fbf38706625a438c78583 125efd3a22d5e7707b318d9aa11567bc 251a428ee267340c75b0c5b53d065d17 4781d31eb4a26322cadb81b46d984410 9170cd29916bc3ad5692415facc09446 93414c61d4a24443a36c8f6b9b79f2b3 750961df1b1d3bfd568a24185cd869bc 92450469b138edd7529d1fdfae6b095b c07d8f5b5fcf63c4a847087d02653642 ce05f8b8ccec2697d3feaeac62c31226 d67c5240977e949d591da2f9cdabecc0 d80b01fb0b5e73695f3bf651a23f47b8 ec1bddfbc3e66f1fed12416baec7b709 Found: 9170cd29916bc3ad5692415facc09446:parisiivogel
  • 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
    2k 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
    766 Views
    No one has replied
  • Quick Way to Crack VB 2611 Salts

    Scripts
    2
    0 Votes
    2 Posts
    847 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
  • mdxfind info

    Pinned Locked mdxfind
    5
    2 Votes
    5 Posts
    1k Views
    cycloneC
    update: mdxfind 1.135 (2025-09-12) - Fixed segfault in SNE128 and SNE256 - Force checks added for rhash variants - Better flushing of stdout - New hash type: MD5DECBASE64MD5BASE64MD5 https://www.techsolvency.com/pub/bin/mdxfind/
  • hashpwn wordlist

    Pinned Wordlists
    9
    6 Votes
    9 Posts
    2k Views
    R
    @cyclone Thanks!
  • Definition of the hashing algorithm.

    Unknown Algo
    1
    0 Votes
    1 Posts
    675 Views
    No one has replied
  • Terms of Service & Privacy Policy

    Pinned Locked Forum Rules (MUST READ)
    1
    0 Votes
    1 Posts
    745 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
    651 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
    732 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
  • Wordlists

    Wordlists wordlist
    23
    4 Votes
    23 Posts
    4k Views
    A1131A
    Title: Cyrillic_wordlist Author: A1131 URL: Mega link Description:Wordlist for hashcracking The wordlist include passwords converted from Russian-Latin dictionaries to UTF-8 dvorak keyboard layout as well as extracted passwords in Russian Cyrillic from different dictionaries.
  • 0 Votes
    13 Posts
    2k Views
    174region1741
    aaNMONeH:Qqwe4566 ogv6TBFe:eyEmme0324
  • hashcat Info

    Pinned Locked hashcat
    2
    1 Votes
    2 Posts
    644 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
  • 0 Votes
    8 Posts
    949 Views
    cycloneC
    You can submit a support ticket on hashes.com and ask them to add support for the latest hashcat 26600 and 26610 algos that were released with hashcat v7. https://hashes.com/en/support
  • 809k -m 1420 sha256($salt.$pass)

    Standard: MD5, SHA1, SHA256, etc.
    3
    0 Votes
    3 Posts
    387 Views
    A1131A
    3395_found.txt 710506_left.zip

Who's Online [Full List]

8 users active right now (3 members and 5 guests).
freeroute, petrovivo1234, hashpwn-bot

Board Statistics

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