mirror of
https://github.com/lgandx/Responder.git
synced 2026-01-29 01:29:25 +00:00
Fixed duplicate entry in hash file for machine accounts
This commit is contained in:
@@ -102,7 +102,7 @@ def WriteData(outfile,data, user):
|
||||
outf.close()
|
||||
if os.path.isfile(outfile) == True:
|
||||
with open(outfile,"r") as filestr:
|
||||
if re.search(user, filestr.read()):
|
||||
if re.search(user.encode('hex'), filestr.read().encode('hex')):
|
||||
filestr.close()
|
||||
return None
|
||||
else:
|
||||
@@ -1431,3 +1431,4 @@ if __name__ == '__main__':
|
||||
raise
|
||||
raw_input()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user