Skip to content
This repository was archived by the owner on Aug 7, 2020. It is now read-only.

Commit

Permalink
Fixed Harsh Parser variable typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lgandx committed Sep 11, 2015
1 parent c9eca96 commit 5ab431a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions servers/MSSQL.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def ParseSQLHash(data, client):

NthashLen = struct.unpack('<H',data[30:32])[0]
NthashOffset = struct.unpack('<H',data[32:34])[0]
NtHash = SSPIStart[NthashOffset:NthashOffset+NthashLen].encode("hex").upper()
NTHash = SSPIStart[NthashOffset:NthashOffset+NthashLen].encode("hex").upper()

DomainLen = struct.unpack('<H',data[36:38])[0]
DomainOffset = struct.unpack('<H',data[40:42])[0]
Expand Down Expand Up @@ -154,4 +154,4 @@ def handle(self):

except socket.timeout:
pass
self.request.close()
self.request.close()

0 comments on commit 5ab431a

Please sign in to comment.