From 9feee6cfdc62578e88dc2f2da3e9e37f8aa0b765 Mon Sep 17 00:00:00 2001 From: Jeff H Date: Sat, 27 Jul 2019 18:50:45 -0500 Subject: [PATCH] Add Pipal menu --- hate_crack.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hate_crack.py b/hate_crack.py index a3feb7f..52222d4 100644 --- a/hate_crack.py +++ b/hate_crack.py @@ -1039,9 +1039,11 @@ def show_results(): # Analyze Hashes with Pipal def pipal(): if os.path.isfile(hcatHashFile + ".out"): + pipalFile = open(hcatHashFile + ".pipal", 'w') with open(hcatHashFile + ".out") as hcatOutput: for cracked_hash in hcatOutput: - print(cracked_hash.strip()) + password = cracked_hash.split(':') + pipalFile.write(password[1] + "\n") else: print("No hashes were cracked :(")