![]() |
How to output the uncracked hash while saving it - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: How to output the uncracked hash while saving it (/thread-7448.html) |
How to output the uncracked hash while saving it - mehashingalone - 04-17-2018 This question is rather very simple but i can't help myself so i would simply ask from my mentors. For this example i am using https://www.md5hashgenerator.com/ Quote:Your Hash: 5f4dcc3b5aa765d61d8327deb882cf99 Now that i have 2 password in my list to crack i use this command hashcat64.exe -m 0 -a 0 -o cracked.txt C:\hash.txt C:\wordlist.txt --show
And lets assume that everything went well and it did cracked the first hash and the second one being not cracked. How do i export the one which is not cracked as well for example i wanted to output like this 5f4dcc3b5aa765d61d8327deb882cf99:password [b]482c811da5d5b4bc6d497ffa98491e38[/b] RE: How to output the uncracked hash while saving it - undeath - 04-17-2018 if order is not important you can use --left to dump all uncracked hashes RE: How to output the uncracked hash while saving it - mehashingalone - 04-17-2018 yes it's working fine while using --left but i want to dump both the cracked and uncracked hashes in one file which when used this command --left doesn't do the job. Is their any other way to accomplish this? RE: How to output the uncracked hash while saving it - Banaanhangwagen - 04-17-2018 Maybe is the --remove an option for you? - the hash.txt will be cleaned and only the non-cracked remain If you want one file of it, simply merge it with the output file. RE: How to output the uncracked hash while saving it - mehashingalone - 04-17-2018 ok i think merging is the only option left for me / to write a custom script which might do all this for me |