Author: Joe Testa (@therealjoetesta)
This project produces open-source code to generate rainbow tables as well as use them to look up password hashes. While the current release only supports NTLM, future releases may support MD5, SHA-1, SHA-256, and possibly more. Both Linux and Windows are supported!
For more information, see the project website: https://www.rainbowcrackalack.com/
NTLM 8-character tables (93% effective) are available for free download via Bittorrent.
NTLM 9-character tables (50% effective) are available for free download via Bittorrent.
For convenience, the tables may also be purchased on a USB 3.0 external hard drive.
The following command shows how to generate a standard 9-character NTLM table:
# ./crackalack_gen ntlm ascii-32-95 9 9 0 803000 67108864 0
The arguments are designed to be comparable to those of the original (and now closed-source) rainbow crack tools. In order, they mean:
Argument | Meaning |
---|---|
ntlm | The hash algorithm to use. Currently only "ntlm" is supported. |
ascii-32-95 | The character set to use. This effectively means "all available characters on the US keyboard". |
9 | The minimum plaintext character length. |
9 | The maximum plaintext character length. |
0 | The reduction index. Not used under standard conditions. |
803000 | The chain length for a single rainbow chain. |
67108864 | The number of chains per table (= 64M) |
0 | The table part index. Keep all other args the same, and increment this field to generate a single set of tables. |
The following command shows how to look up a file of NTLM hashes (one per line) against the NTLM 8-character tables:
# ./crackalack_lookup /export/ntlm8_tables/ /home/user/hashes.txt
The NVIDIA GTX & RTX lines of GPU hardware has been well-tested with the Rainbow Crackalack software, and offer an excellent price/performance ratio. Specifically, the GTX 1660 Ti or RTX 2060 are the best choices for building a new cracking machine. This document contains the raw data that backs this recommendation.
However, other modern equipment can work just fine, so you don't necessarily need to purchase something new. The NVIDIA GTX and AMD Vega product lines are still quite useful for cracking!
A 64-bit Windows build can be achieved on an Ubuntu host machine by installing the following prerequisites:
# apt install mingw-w64 opencl-headers
Then starting the build with:
# make clean; ./make_windows.sh
However, if you prefer to build a complete package (which is useful for testing on other Windows machines), run:
# ./scripts/build_windows_zip.sh
- Improved speed of NTLM9 precomputation by 9.5x and false alarm checks by 4.5x!
- Fixed lookup on AMD ROCm.
- Added support for pwdump-formatted hash files.
- Added time estimates for precomputation phase.
- Disable Intel GPUs when found on systems with AMD or NVIDIA GPUs.
- Fixed bug in counting tables during lookup.
- Fixed bug where lookups would continue even though all hashes were cracked.
- Fixed cache lookup when a single hash in uppercase was provided.
- Added lookup colors.
- Lookup tables are now pre-loaded in parallel to binary searching & false alarm checking, resulting in 30-40% speed improvement (!).
- Massive speed improvements (credit Steve Thomas).
- Finalization of NTLM9 spec.
- Various bugfixes.
- Initial revision.