Author: Trix Cyrus
Developed by: TrixSec Org
Current Version: v1.1
Maintained: Yes
- Telegram: @Trixsec
- GitHub: Hash-Hammer
Hash-Hammer is a multi-threaded hash-cracking tool designed for security testing and educational purposes.It supports both brute-force and dictionary-based password cracking modes.
- Multi-threaded: Speed up hash cracking by using multiple threads.
- Two cracking modes:
- Brute-force Mode: Generate password combinations based on a defined character set.
- Dictionary/Password File Mode: Use a custom password file to find the matching hash.
- Real-time statistics: Display checked passwords, remaining attempts, and speed.
- MD5
- Added Hash Algo - MD5
- Multi Threading
- Dictonary Based Cracking
- Bruteforce Based Cracking
--------- More - Updates - Soon ----------
git clone https://github.com/TrixSec/Hash-Hammer.git
cd Hash-Hammer
You’ll need to have OpenSSL and GCC installed to compile the tool. To compile:
gcc -o hash-hammer hash_hammer.c -lssl -lcrypto -pthread
To execute the tool:
./hash-hammer
- Target Hash: Enter the hash you want to crack.
- Mode:
1
: Brute-force Mode2
: Dictionary Mode (provide a password file)
- Password Length: Specify for brute-force mode (required).
- Number of Threads: Specify the number of threads for parallel processing.
-
Brute-force Mode:
Enter the hash to crack: <md5_hash> Choose mode: 1 Enter the password length: 4 Enter the number of threads: 8
-
Password File Mode:
Enter the hash to crack: <md5_hash> Choose mode: 2 Enter the path to the password file: /path/to/passwords.txt Enter the number of threads: 8
- Libraries: OpenSSL (for MD5 hashing), pthread (for multi-threading)
- Compiler: GCC or compatible C compiler
This tool is intended for educational purposes and authorized security testing only. Unauthorized use on third-party systems is illegal and punishable by law.