USER:HASH - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: USER:HASH (/thread-7261.html) |
USER:HASH - dosghost - 02-04-2018 Hello this has possibly been asked but I am asking because I cannot find a straight answer. I have a list I made NAME:MD5HASH NAME:MD5HASH NAME:MD5HASH NAME:MD5HASH what I want to do is is run a wordlist.dic on the MD5HASH only. and when it finds the MD5HASH it will replace the MD5HASH with Word from .dic so NAME:CrackedPW NAME:CrackedPW NAME:CrackedPW NAME:CrackedPW when it finds them. it will save both NAME:CrackedPW to a crackedpwl.txt I have a 260 GB PWL, so there is no question about finding or not finding the hash. if anyone knows the command please post it or a video or a link to this topic thanks. but I honestly need to save this command to a BAT file. or at least to my external. any information please post me some information RE: USER:HASH - royce - 02-04-2018 https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_can_i_show_previously_cracked_passwords_and_output_them_in_a_specific_format_eg_emailpassword RE: USER:HASH - dosghost - 02-04-2018 (02-04-2018, 01:32 AM)royce Wrote: https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_can_i_show_previously_cracked_passwords_and_output_them_in_a_specific_format_eg_emailpassword Thank you. I did review this its not what I am looking to do. I want to keep everything left of the : intact as I am Cracking the Hash and it will print out the cracked NAME: CrackedMD5 on the screen or save it to a text file as it finds the correct PW to the MD5, RE: USER:HASH - royce - 02-04-2018 Yes, that's *exactly* what the link I sent you does. Please study it more closely. First, crack, using --username so that usernames are understood in the target hash file: Code: $ cat test.hash Here is the resulting potfile: Code: $ cat test.pot And here we generate an outfile with --show and -o. We use --username and --outfile-format of 2, which will generate the format you want (user:plain): Code: $ hashcat -m 0 --username --potfile-path test.pot --show -o test.out --outfile-format=2 test.hash RE: USER:HASH - dosghost - 02-04-2018 i see but that. but the thing is I was able to do it the way I was saying. but I will give this a shot. thanks again RE: USER:HASH - royce - 02-04-2018 Ah, if you're asking whether you can customize the realtime output as the cracks *are actually occurring*, I'm not aware of a way to do that. But tailing the output file in a separate window will have the same effect. RE: USER:HASH - dosghost - 02-04-2018 (02-04-2018, 08:29 PM)royce Wrote: Ah, if you're asking whether you can customize the realtime output as the cracks *are actually occurring*, I'm not aware of a way to do that. But tailing the output file in a separate window will have the same effect. lol its ok if it saves to a file real time output does not have to happen could you tell me the command to the other way you are speaking. RE: USER:HASH - undeath - 02-04-2018 tail -f outfile.txt RE: USER:HASH - dosghost - 02-05-2018 The Command given in Your information keeps erring out with "the Error is No Devices Found/left" |