Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: Beginner need help. Is oclhashcat-lite support hashlist?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I'm trying to crack couple sha1 hash which saved in hashlist.sha1 , each hash in 1 line , password from 4 to 12 chars , using UPPERCASE and number. is this command line correct? It gives error and NOT support hashlist.sha1 .
And this part --custom-charset1=ud is correct for UPPERCASE and number?

./cudaHashcat-lite64.bin hashlist.sha1 --outfile=output.txt --pw-min=4 --pw-max=12 --hash-type=100 --custom-charset1=ud

Thank you so much for helping Smile
oclHashcat-lite is only for cracking a single hash. Use oclHashcat-plus.
Thank you. What about second part of my question?
"And this part --custom-charset1=ud is correct for UPPERCASE and number? "
try this

./cudaHashcat-lite64.bin -m 100 hashlist.sha1 -o output.txt --pw-min 4 --pw-max 12 -1 ?u?d ?1?1?1?1?1?1?1?1?1?1?1?1
hashlists are not supported with oclHashcat-lite. as arex1337 already said, use oclHashcat-plus. Here is you cmdline converted to oclHashcat-plus:

./cudaHashcat-plus64.bin hashlist.sha1 --outfile=output.txt --hash-type=100 -1 ?l?d ?1?1?1?1

since it does not support iterated through length you have to run it several times:

./cudaHashcat-plus64.bin hashlist.sha1 --outfile=output.txt --hash-type=100 -1 ?l?d ?1?1?1?1
./cudaHashcat-plus64.bin hashlist.sha1 --outfile=output.txt --hash-type=100 -1 ?l?d ?1?1?1?1?1
./cudaHashcat-plus64.bin hashlist.sha1 --outfile=output.txt --hash-type=100 -1 ?l?d ?1?1?1?1?1?1
./cudaHashcat-plus64.bin hashlist.sha1 --outfile=output.txt --hash-type=100 -1 ?l?d ?1?1?1?1?1?1?1
./cudaHashcat-plus64.bin hashlist.sha1 --outfile=output.txt --hash-type=100 -1 ?l?d ?1?1?1?1?1?1?1?1

and so on..