diff --git a/hate_crack.py b/hate_crack.py index c4a47e1..a3feb7f 100644 --- a/hate_crack.py +++ b/hate_crack.py @@ -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():