mirror of
https://github.com/trustedsec/hate_crack.git
synced 2025-12-12 15:49:19 -08:00
Add Pipal menu
This commit is contained in:
@@ -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():
|
||||
|
||||
|
||||
Reference in New Issue
Block a user