| Tool |
Language |
Description |
Free |
Premium |
| hashcrack |
Rust |
GPU-accelerated hash cracker |
✅ |
🔥 |
| hashid |
Python |
Hash type identifier |
✅ |
🔥 |
| cryptor |
Rust |
AES/ChaCha encryption tool |
✅ |
🔥 |
| keyanalyze |
C |
Cryptographic key analyzer |
❌ |
🔥 |
| rainbow |
Rust |
Rainbow table generator |
❌ |
🔥 |
| jwtcrack |
Python |
JWT token analyzer/cracker |
✅ |
🔥 |
nullsec-crypto/
├── rust/
│ ├── hashcrack/ # Multi-threaded hash cracker
│ ├── cryptor/ # Encryption/decryption tool
│ └── rainbow/ # Rainbow table generator
├── c/
│ ├── keyanalyze.c # Key strength analyzer
│ └── entropy.c # Entropy calculator
├── python/
│ ├── hashid.py # Hash identifier
│ ├── jwtcrack.py # JWT analyzer
│ └── b64crack.py # Base64 decoder/analyzer
└── wordlists/
└── README.md # Wordlist sources
| Algorithm |
Speed (CPU) |
Speed (GPU) |
Status |
| MD5 |
50M/s |
25B/s |
✅ |
| SHA1 |
30M/s |
15B/s |
✅ |
| SHA256 |
15M/s |
8B/s |
✅ |
| SHA512 |
5M/s |
2B/s |
✅ |
| bcrypt |
25K/s |
100K/s |
✅ |
| scrypt |
10K/s |
50K/s |
✅ |
| Argon2 |
5K/s |
20K/s |
✅ |
| NTLM |
80M/s |
40B/s |
✅ |
| WPA2 |
500/s |
500K/s |
🔥 Premium |
# Identify hash type
python3 hashid.py -f hashes.txt
# Crack hashes with wordlist
./hashcrack -m md5 -w rockyou.txt hashes.txt
# Crack with rules
./hashcrack -m sha256 -w wordlist.txt -r best64.rule hashes.txt
# Encrypt file
./cryptor encrypt -i secret.txt -o secret.enc -p "password"
# Decrypt file
./cryptor decrypt -i secret.enc -o secret.txt -p "password"
For authorized security testing only. Only crack hashes you have permission to test.