From b57b3d73987ad55883bf431b0b2c242c14264c6d Mon Sep 17 00:00:00 2001 From: Sylvain Peyrefitte Date: Thu, 5 Mar 2015 22:53:13 +0100 Subject: [PATCH] Update ntlm.py --- rdpy/protocol/rdp/nla/ntlm.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rdpy/protocol/rdp/nla/ntlm.py b/rdpy/protocol/rdp/nla/ntlm.py index 1b01e59..505be1a 100644 --- a/rdpy/protocol/rdp/nla/ntlm.py +++ b/rdpy/protocol/rdp/nla/ntlm.py @@ -683,9 +683,9 @@ if __name__ == "__main__": ClientChallenge = temp[16:24] EncryptedRandomSessionKey = authenticate.getEncryptedRandomSession() - domain = "siradel" - user = "speyrefitte" - password = "spe+99@12" + domain = "" + user = "" + password = "" ResponseKeyNT = NTOWFv2(password, user, domain) ResponseKeyLM = LMOWFv2(password, user, domain) @@ -711,4 +711,4 @@ if __name__ == "__main__": print "EncryptedPubKeySrc" hexdump.hexdump(EncryptedPubKeySrc) print "EncryptedPubKeyDst" - hexdump.hexdump(EncryptedPubKeyDst) \ No newline at end of file + hexdump.hexdump(EncryptedPubKeyDst)