best way to handle spaces output/hashcat.pot - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: best way to handle spaces output/hashcat.pot (/thread-2480.html) |
best way to handle spaces output/hashcat.pot - liquiz - 07-27-2013 Somewhere along the line I messed up one of my dictionary files and when I ran a combination attack this is what Im seeing. Code: Hash.Type......: MD5 deadbeef and hamburger are a just a made up example of what the output does look like. The question really becomes is there a way to not loose the spaces so you can feed the results back into hashcat? Im on a linux box so I tend to use cat hashcat.pot | cut -c 34- >outputfile.words Im pretty certain thats not the best approach since it kills both leading and trailing spaces. Peace RE: best way to handle spaces output/hashcat.pot - philsmd - 07-28-2013 (07-27-2013, 09:58 PM)liquiz Wrote: In case anyone is wondering thats from the https://www.korelogic.com 1. It doesn't matter where you have the hashes from (as per http://hashcat.net/forum/announcement-2.html you shouldn't post hashes here, they are indexed by search engines etc and of course linked to hashcat then) 2. If your definition of "space" includes also tabs, yes they are in there... you could always use -o and --outfile-format in first place 3. cut only does what it was asked to do, it (cut -c 34- hashcat.pot) doesn't strip anything but the hash itself 4. new version of hashcat also support this: Code: ./oclHashcat-plus64.bin --show -o only_plain.txt --outfile-format 2 m0000.txt RE: best way to handle spaces output/hashcat.pot - liquiz - 07-28-2013 (07-28-2013, 08:10 AM)philsmd Wrote:(07-27-2013, 09:58 PM)liquiz Wrote: In case anyone is wondering thats from the https://www.korelogic.com Sorry about posting the solved hashes, that should be fixed now using a dummy example. I'll take a look at how the output formatting in --outfile-format 2 comes out. Peace |