minor bug fix

This commit is contained in:
Lgandx 2013-02-14 11:30:46 -05:00
commit f5c1f9464a
2 changed files with 3 additions and 11 deletions

View file

@ -862,7 +862,7 @@ def ProxyPacketSequence(data,client):
if packetNtlm == "\x03":
NTLM_Auth= b64decode(''.join(a))
ParseHTTPHash(NTLM_Auth,client)
buffer1 = IIS_Proxy_Auth_Failed()
buffer1 = DitchThisConnection()
buffer1.calculate()
return str(buffer1)
if b:
@ -876,7 +876,7 @@ def ProxyPacketSequence(data,client):
WriteData(outfile,b64decode(''.join(b)))
print "[+]HTTP-User & Password:", b64decode(''.join(b))
logging.warning('[+]HTTP-User & Password: %s'%(b64decode(''.join(b))))
buffer1 = IIS_Proxy_Auth_Failed()
buffer1 = DitchThisConnection()
buffer1.calculate()
return str(buffer1)