HashCobra is a tool uses a new method to crack hashes. With the help of rainbow tables concept this tool generates rainbow tables from wordlists to heavily optimize the cracking process.
$ ./hashcobra -H
–==[ hashcobra by sepehrdad ]==–
Usage:
hashcobra -o <opr> [options] | [misc]
Options:
-a <alg> – hashing algorithm [default: md5]
– ? to list available algorithms
-c <alg> – compression algorithm [default: zstd]
– ? to list available algorithms
-h <hash> – hash to crack
-r <path> – rainbow table path [default: hashcobra.db]
-d <path> – dictionary file path
-o <opr> – operation to do
– ? to list available operations
Misc:
-V – show version
-H – show help
Example:
#Create md5 rainbow table with zstd compression from rockyou.txt
$ hashcobra -o create -d rockyou.txt
#Create sha512 rainbow table with no compression from darkc0de.lst
$ hashcobra -o create -a sha512 -c none -r rt.db -d darkc0de.lst
#Crack 1a1dc91c907325c69271ddf0c944bc72 using rt.db
$ hashcobra -h 1a1dc91c907325c69271ddf0c944bc72 -r rt.db
Also Read – ReconPi : A Lightweight Recon Tool That Performs Extensive Scanning
Supported Hashing Algorithms
Supported Compression Algorithms
Building
$ make
Installing
$ make install
Disclaimer
THIS SOFTWARE IS PROVIDED FOR EDUCATIONAL USE ONLY! IF YOU ENGAGE IN ANY ILLEGAL ACTIVITY THE AUTHOR DOES NOT TAKE ANY RESPONSIBILITY FOR IT. BY USING THIS SOFTWARE YOU AGREE WITH THESE TERMS.
Playwright-MCP (Model Context Protocol) is a cutting-edge tool designed to bridge the gap between AI…
JBDev is a specialized development tool designed to streamline the creation and debugging of jailbreak…
The Kereva LLM Code Scanner is an innovative static analysis tool tailored for Python applications…
Nuclei-Templates-Labs is a dynamic and comprehensive repository designed for security researchers, learners, and organizations to…
SSH-Stealer and RunAs-Stealer are malicious tools designed to stealthily harvest SSH credentials, enabling attackers to…
Control flow flattening is a common obfuscation technique used by OLLVM (Obfuscator-LLVM) to transform executable…