Skip to content

Instantly share code, notes, and snippets.

@gattacker
Last active November 30, 2018 18:36
Show Gist options
  • Save gattacker/cbbedc1dbfd8db9bc6f9bc94da2d960b to your computer and use it in GitHub Desktop.
Save gattacker/cbbedc1dbfd8db9bc6f9bc94da2d960b to your computer and use it in GitHub Desktop.
NTLM
import hashlib,binascii
hash = hashlib.new('md4', "password".encode('utf-16le')).digest()
print (binascii.hexlify(hash))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment