Add Pipal menu

This commit is contained in:
Jeff H
2019-07-27 18:38:54 -05:00
parent b6ca86130a
commit 22962ad1fd

View File

@@ -1036,6 +1036,15 @@ def show_results():
else:
print("No hashes were cracked :(")
# Analyze Hashes with Pipal
def pipal():
if os.path.isfile(hcatHashFile + ".out"):
with open(hcatHashFile + ".out") as hcatOutput:
for cracked_hash in hcatOutput:
print(cracked_hash.strip())
else:
print("No hashes were cracked :(")
# Exports output to excel file
def export_excel():