output file - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html) +--- Thread: output file (/thread-868.html) |
output file - cuda - 01-30-2012 Greetings. i have hashlist file with next fomat Quote:id:hash out file looks like this Quote:hash:password what should i do to get output file looks like Quote:id:passwordor Quote:id:hash:password RE: output file - chort - 01-30-2012 Run oclHashcat-plus with --help to see the supported output formats. I do something like: Code: $ cut -d':' -f1 cracked.txt | xargs -I {} -xn1 grep {} hashfile.txt You could write a shell script if you want something fancier. RE: output file - cuda - 01-30-2012 * Outfile Formats: 1 = hash[alt] 2 = plain 3 = hash[alt]:plain 4 = hex_plain 5 = hash[alt]:hex_plain 6 = plain:hex_plain 7 = hash[alt]:plain:hex_plain nothing changed with cut -d':' -f1 cracked.txt | xargs -I {} -xn1 grep {} hashfile.txt ): RE: output file - chort - 01-30-2012 cracked.txt is the file you output cracked hashes to (hash:plain). hashfile.txt is the file you're reading hashes from (username:hash) Use oclHashcat-plus with -o cracked.txt Once it's finished, use the cut ... | xargs ... one-liner to find the cracked hashes from the original file. This assumes you're running Linux. There's probably a powershell equivalent for Windows. RE: output file - cuda - 01-31-2012 problem solved via php script ^___^ PHP Code: <?php RE: output file - chort - 01-31-2012 Nice work. Perhaps you would like to post that in the User Contribution section too in case other people find it useful. RE: output file - atom - 01-31-2012 oclhashcat-plus exactly gets the --show and --username feature to solve this |