For the complete documentation index, see llms.txt. This page is also available as Markdown.

Attack Related

Generate an NTLM hash

import hashlib,binascii
hash = hashlib.new('md4', "thisismyhashvalue".encode('utf-16le')).digest()
print binascii.hexlify(hash)

Last updated