Removed print output
parent
40fda2dd04
commit
e1cdef1d19
|
@ -234,7 +234,7 @@ def parse_credentials(data):
|
||||||
else:
|
else:
|
||||||
print helpers.color("[!] Error in parsing prompted credential output.")
|
print helpers.color("[!] Error in parsing prompted credential output.")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
@ -284,7 +284,6 @@ def parse_mimikatz(data):
|
||||||
elif "Domain" in line:
|
elif "Domain" in line:
|
||||||
domain = line.split(":",1)[1].strip()
|
domain = line.split(":",1)[1].strip()
|
||||||
elif "NTLM" in line or "Password" in line:
|
elif "NTLM" in line or "Password" in line:
|
||||||
print line.split(":")
|
|
||||||
password = line.split(":",1)[1].strip()
|
password = line.split(":",1)[1].strip()
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue