From f23375c8a5e7aeb7efd807d7902302d6fd47424b Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Mon, 26 Jan 2026 22:10:11 -0500 Subject: [PATCH] pipal print --- hate_crack.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hate_crack.py b/hate_crack.py index 1b57576..0b6a290 100755 --- a/hate_crack.py +++ b/hate_crack.py @@ -1698,6 +1698,12 @@ def pipal(): print('Killing PID {0}...'.format(str(pipalProcess.pid))) pipalProcess.kill() print("Pipal file is at " + hcatHashFilePipal + ".pipal\n") + view_choice = input("Would you like to view (cat) the pipal output? (Y/n): ").strip().lower() + if view_choice in ('', 'y', 'yes'): + print("\n--- Pipal Output Start ---\n") + with open(hcatHashFilePipal + ".pipal") as pipalfile: + print(pipalfile.read()) + print("\n--- Pipal Output End ---\n") with open(hcatHashFilePipal + ".pipal") as pipalfile: pipal_content = pipalfile.readlines() raw_pipal = '\n'.join(pipal_content)