Beginner need help. Is oclhashcat-lite support hashlist?
#1
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
#2
oclHashcat-lite is only for cracking a single hash. Use oclHashcat-plus.
#3
Thank you. What about second part of my question?
"And this part --custom-charset1=ud is correct for UPPERCASE and number? "
#4
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
#5
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..