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