From c855228b216593458f2e73a4674476bd7813d489 Mon Sep 17 00:00:00 2001 From: Jeff H Date: Sat, 27 Jul 2019 18:38:54 -0500 Subject: [PATCH] Add Pipal menu --- hate_crack.py | 9 +++++++++ 1 file changed, 9 insertions(+) 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():