mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-19 21:03:33 -07:00
Removed machine accounts dump, since they are not crackable
This commit is contained in:
parent
b8818ed0c4
commit
c9b5dd040e
1 changed files with 8 additions and 2 deletions
|
@ -28,6 +28,9 @@ def GetResponderCompleteNTLMv2Hash(cursor):
|
||||||
res = cursor.execute("SELECT fullhash FROM Responder WHERE type LIKE '%v2%' AND UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder)")
|
res = cursor.execute("SELECT fullhash FROM Responder WHERE type LIKE '%v2%' AND UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder)")
|
||||||
Output = ""
|
Output = ""
|
||||||
for row in res.fetchall():
|
for row in res.fetchall():
|
||||||
|
if "$" in row[0]:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
Output += '{0}'.format(row[0])+'\n'
|
Output += '{0}'.format(row[0])+'\n'
|
||||||
return Output
|
return Output
|
||||||
|
|
||||||
|
@ -35,6 +38,9 @@ def GetResponderCompleteNTLMv1Hash(cursor):
|
||||||
res = cursor.execute("SELECT fullhash FROM Responder WHERE type LIKE '%v1%' AND UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder)")
|
res = cursor.execute("SELECT fullhash FROM Responder WHERE type LIKE '%v1%' AND UPPER(user) in (SELECT DISTINCT UPPER(user) FROM Responder)")
|
||||||
Output = ""
|
Output = ""
|
||||||
for row in res.fetchall():
|
for row in res.fetchall():
|
||||||
|
if "$" in row[0]:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
Output += '{0}'.format(row[0])+'\n'
|
Output += '{0}'.format(row[0])+'\n'
|
||||||
return Output
|
return Output
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue