Add NTLM support, replace dead lookup services, and add tests - #64
Open
0x01code wants to merge 20 commits into
Open
Add NTLM support, replace dead lookup services, and add tests#640x01code wants to merge 20 commits into
0x01code wants to merge 20 commits into
Conversation
…e, and add liveness tests
…ests for NTLM hashes
…thod order for consistency
…ved response handling
This was referenced Aug 21, 2026
Open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Hash Buster's crackers were pointing at services that are now dead or have
changed their APIs (nitrxgen, the old md5decrypt endpoint), so most lookups silently returned nothing. This PR replaces them
with working services, adds NTLM support, and introduces a test suite.
What changed
database.py– all lookup logic moved into aDatabaseclass withfive working services:
weakpass,md5decrypt(new API),gromweb,md5hashing(Meteor DDP-over-SockJS websocket), andcrackcrypt. The oldalpha/beta/gamma/theta/deltafunctions and their broken endpointsare removed.
any 32-char hash is looked up as both and both results are reported:
[!] Hash function : MD5 / NTLM
MD5 : (not found)
NTLM : password
Services that auto-detect the hash type filter matches by detected type so
MD5 and NTLM don't cross over.
-mflag – force a single hash type (md5, ntlm, sha1, sha256, sha384, sha512), e.g.buster -s <hash> -m ntlm. Needed because NTLM can't beauto-detected.
lookup()helper plusdisplay_result()/inline_result()for consistent single-hash vs. file/multi-hash output.test_database.pywith anetworkpytest marker for livelookups, plus
pytest.ini,requirements.txt, andmakefileupdated toinstall
database.pyalongside thebusterbinary.-mflag; feature list nowincludes NTLM.
Testing
pytest(unit tests). Live lookups are gated behind-m networksince theyhit third-party services