minor fix

This commit is contained in:
lgandx 2021-05-09 19:02:42 -03:00
commit ae1c2be51c
3 changed files with 9 additions and 9 deletions

View file

@ -47,7 +47,7 @@ def Chose3264x(packet):
def FindNTLMOpcode(data):
SSPIStart = data.find(b'NTLMSSP')
if SSPIStart is -1:
if SSPIStart == -1:
return False
SSPIString = data[SSPIStart:]
return SSPIString[8:12]