From 6f2ad7a54b60488d05b117a254998105351d8565 Mon Sep 17 00:00:00 2001 From: Skydust Date: Sat, 3 Jun 2023 16:48:54 +0200 Subject: [PATCH] Fixed wrong text that I just changed --- child_process.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/child_process.py b/child_process.py index 521699b..b7003c1 100644 --- a/child_process.py +++ b/child_process.py @@ -135,11 +135,13 @@ def worldlist_bruteforce_partial(fileToCrack, wordlistPath, total_proc, processN for lineToDecrypt in get_lines(line): if decrypt_file(office_file, lineToDecrypt): # Decrypts print_thread(processNumbar, - "!!FOUNDPASSWORD!! [" + lineToDecrypt + "\] !!FOUNDPASSWORD!!") + "!!FOUNDPASSWORD!! " + lineToDecrypt + " !!FOUNDPASSWORD!!") # Writes pass to file foundPassFile = open("found.txt", "w") foundPassFile.write(lineToDecrypt) foundPassFile.close() + print_thread(processNumbar, + "Saved in found.txt...") sys.exit(111) # Exit with found code