Skip to content

Tools

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

49 Topics 175 Posts

Subcategories


  • Matrix - Encrypted Chat

    1 2
    1 Topics
    2 Posts
    No new posts.
  • Private search engine hosted by hashpwn, powered by searXNG.

  • Encrypted pastebin hosted by hashpwn, powered by PrivateBin.

  • Hash cracking tools.
    Follow Posting Template:
    https://forum.hashpwn.net/post/68

    27 129
    27 Topics
    129 Posts
    T
    good nice
  • Network related tools for web scraping, IP / domain lookups , etc.
    Follow Posting Template:
    https://forum.hashpwn.net/post/68

    4 11
    4 Topics
    11 Posts
    cycloneC
    v0.9.1 https://github.com/cyclone-github/spider/releases/tag/v0.9.1 added -agent flag #8 by @cyclone-github in #10 chore(deps): enable daily Dependabot for Go modules by @cyclone-github in #11 ci: build/test Dependabot PRs by @cyclone-github in #12 chore(deps): bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.11.0 in the minor-and-patch group by @dependabot[bot] in #13
  • Share and discuss scripts that help automate hash cracking and related tasks. Zero tolerance for malicious content.
    Follow Posting Template:
    https://forum.hashpwn.net/post/68

    7 10
    7 Topics
    10 Posts
    A1131A
    Concentrator v3.0: Unified Hashcat Rule Processor Concentrator v3.0 is an advanced, high-performance tool written in Python 3 designed to unify the processes of extracting, validating, cleaning, and generating highly effective Hashcat rulesets. It features multi-processing for parallel file ingestion and optional OpenCL (GPU) acceleration for massive-scale rule validation and filtering. Key Features Three Processing Modes: Extract top-performing rules, generate combinatorial rule sets, or generate Markov-chain based rules. OpenCL Acceleration: Optional GPU-backed processing for rule validation, providing significant speed improvements over CPU-only methods for large datasets. Hashcat Engine Simulation: Includes a built-in Python simulation of the Hashcat rule engine for functional testing and minimization (preventing functionally duplicate rules). Memory Safety: Features proactive memory usage monitoring (psutil) to warn users before performing memory-intensive operations, preventing system instability. Advanced Filtering: Supports complex cleanup and deduplication strategies post-generation, including Levenshtein distance filtering. Interactive and CLI Modes: Supports full command-line arguments as well as a user-friendly, colorized interactive setup mode. Getting Started Prerequisites Concentrator v3.0 requires Python 3.8 or higher. For full functionality, including GPU acceleration and advanced monitoring, the following dependencies are required. Recommended installing them within a virtual environment: python3 -m venv venv source venv/bin/activate # Install core dependencies pip install tqdm psutil numpy # Install OpenCL dependencies (Note: pyopencl installation may require system-level OpenCL drivers) pip install pyopencl Installation Clone the repository and run the script directly: git clone https://github.com/A113L/concentrator cd concentrator-v3 python3 concentrator-v3.py --help ️ Usage python concentrator-v3.py -h ================================================================================ CONCENTRATOR v3.0 - Unified Hashcat Rule Processor ================================================================================ Combined Features: • OpenCL GPU Acceleration for validation and generation • Three Processing Modes: Extraction, Combinatorial, Markov • Hashcat Rule Engine Simulation & Functional Minimization • Rule Validation and Cleanup (CPU/GPU compatible) • Levenshtein Distance Filtering • Smart Processing Selection & Memory Safety • Interactive & CLI Modes with Colorized Output ================================================================================ Memory Status: RAM 42.4% (6.49 GB/15.42 GB) | SWAP: 6.4% (1.39 GB/21.91 GB) USAGE: python concentrator.py [OPTIONS] FILE_OR_DIRECTORY [FILE_OR_DIRECTORY...] MODES (choose one): -e, --extract-rules Extract top existing rules from input files -g, --generate-combo Generate combinatorial rules from top operators -gm, --generate-markov-rules Generate statistically probable Markov rules -p, --process-rules Interactive rule processing and minimization EXTRACTION MODE (-e): -t, --top-rules INT Number of top rules to extract (default: 10000) -s, --statistical-sort Sort by statistical weight instead of frequency COMBINATORIAL MODE (-g): -n, --combo-target INT Target number of rules (default: 100000) -l, --combo-length MIN MAX Rule length range (default: 1 3) MARKOV MODE (-gm): -gt, --generate-target INT Target rules (default: 10000) -ml, --markov-length MIN MAX Rule length range (default: 1 3) PROCESSING MODE (-p): -d, --use-disk Use disk for large datasets to save RAM -ld, --levenshtein-max-dist INT Max Levenshtein distance (default: 2) GLOBAL OPTIONS: -ob, --output-base-name NAME Base name for output file -m, --max-length INT Maximum rule length to process (default: 31) --temp-dir DIR Temporary directory for file mode --in-memory Process entirely in RAM --no-gpu Disable GPU acceleration INTERACTIVE MODE: python concentrator.py (run without arguments for interactive mode) EXAMPLES: # Extract top 5000 rules with GPU acceleration python concentrator.py -e -t 5000 --no-gpu rules/*.rule # Generate 50k combinatorial rules python concentrator.py -g -n 50000 -l 2 4 hashcat/rules/ # Process rules interactively with functional minimization python concentrator.py -p -d rules/ 🧠 Architecture Overview The Concentrator system operates in several key phases: File Ingestion: Input paths are recursively searched, and files are streamed or read into memory (depending on the --in-memory flag). Preprocessing & Validation: Initial rules are filtered for basic Hashcat syntax using multi-processing. Generation/Extraction: The selected mode (Extraction, Combo, or Markov) generates a massive candidate set of rules. Functional Minimization: Candidates are passed through the Python-implemented RuleEngine to ensure they produce unique output for common test strings, reducing redundancy. GPU Validation (Optional): If OpenCL is enabled, the final candidate rules are batched and sent to the GPU for highly optimized validation against character set constraints and length limits. Final Output: Cleaned, unique, and validated rules are written to the output file. ️ Memory and Safety The tool is designed to handle very large rule files (billions of rules). It includes a robust memory monitoring system (check_memory_safety and memory_intensive_operation_warning) that leverages psutil. If RAM + Swap usage exceeds a safety threshold (default 85%) before a major operation (like functional minimization), the user is warned and asked to confirm continuation to prevent system lockups. ️OpenCL Integration The OpenCL portion requires pyopencl and is currently implemented for the final-stage validation (validate_rules_batch kernel). This offloads basic rule integrity checks to the GPU, making the overall process highly scalable. Ensure your system has the correct vendor drivers (NVIDIA, AMD, or Intel) installed for OpenCL support. Website https://hcrt.pages.dev/concentrator.static_workflow Github https://github.com/A113L/concentrator Credits https://github.com/0xVavaldi/ruleprocessorY https://github.com/synacktiv/rulesfinder https://github.com/mkb2091/PyRuleEngine/blob/master/PyRuleEngine.py https://github.com/hashcat/hashcat-utils/blob/master/src/cleanup-rules.c https://github.com/PenguinKeeper7
  • Tools for text, wordlist, hashcat rules, etc.
    Follow Posting Template:
    https://forum.hashpwn.net/post/68

    9 22
    9 Topics
    22 Posts
    cycloneC
    New version of hashgen published. https://github.com/cyclone-github/hashgen/releases/tag/v1.2.0 v1.2.0; 2025-11-08 addressed raw base-16 issue https://github.com/cyclone-github/hashgen/issues/8 added feature: "keep-order" from https://github.com/cyclone-github/hashgen/issues/7 added dynamic lines/sec from https://github.com/cyclone-github/hashgen/issues/11 added modes: mysql5 (300), phpass (400), md5crypt (500), sha256crypt (7400), sha512crypt (1800), Wordpress bcrypt-HMAC-SHA384 (wpbcrypt) added hashcat salted modes: -m 10, 20, 110, 120, 1410, 1420, 1310, 1320, 1710, 1720, 10810, 10820 added hashcat modes: -m 2600, 4500 added encoding modes: base32encode, base32decode cleaned up hashFunc aliases, algo typo, hex mode, hashBytes case switch, base64 and base58 decoders fixed ntlm encoding issue added sanity check to not print blank / invalid hash lines (part of ntlm fix, but applies to all hash modes) converted checkForHex from string to byte updated yescrypt parameters to match debian 12 (libxcrypt) defaults

Who's Online [Full List]

7 users active right now (3 members and 4 guests).
hashpwn-bot, freeroute

Board Statistics

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