hashcat Forum

Full Version: How to crack hasches in a List, second collum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you have a list, and the list contains 2 columns how to crack hashes in the second column (the right one)?

in this example, the haschlist.txt contains 2 columns, separated by a ":" and we want to crack second column in the file, and we want to save the result in a result file.

i guess its somewhere along this lines, but whats missing for oclHaschcat to choose second column in haschlist.txt
oclHashcat32.exe -m 0 haschlist.txt -o result_file.txt passwordfile.txt
You can use the --username switch.
(11-17-2015, 12:13 PM)epixoip Wrote: [ -> ]You can use the --username switch.

so, if i get it correct it would be

oclHashcat32.exe -m 0  --username haschlist.txt -o result_file.txt passwordfile.txt

--username = it will automatically detect and ignore first column
(11-17-2015, 03:46 PM)SmnFz Wrote: [ -> ]
(11-17-2015, 12:13 PM)epixoip Wrote: [ -> ]You can use the --username switch.

so, if i get it correct it would be

oclHashcat32.exe -m 0  --username 1 haschlist.txt -o result_file.txt passwordfile.txt

--username = it will automatically ignore first column

Did you try it?

Did you read the --help entry for the --username parameter?
yeah.. i found it out.. thanks guys