Last active
November 30, 2018 18:36
-
-
Save gattacker/cbbedc1dbfd8db9bc6f9bc94da2d960b to your computer and use it in GitHub Desktop.
NTLM
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
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