Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Beginner need help. Is oclhashcat-lite support hashlist?
01-02-2012, 08:29 PM
Post: #1
Beginner need help. Is oclhashcat-lite support hashlist?
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
Find all posts by this user
Quote this message in a reply
01-02-2012, 10:44 PM
Post: #2
RE: Beginner need help. Is oclhashcat-lite support hashlist?
oclHashcat-lite is only for cracking a single hash. Use oclHashcat-plus.
Find all posts by this user
Quote this message in a reply
01-03-2012, 03:16 AM
Post: #3
RE: Beginner need help. Is oclhashcat-lite support hashlist?
Thank you. What about second part of my question?
"And this part --custom-charset1=ud is correct for UPPERCASE and number? "
Find all posts by this user
Quote this message in a reply
01-03-2012, 05:00 AM
Post: #4
RE: Beginner need help. Is oclhashcat-lite support hashlist?
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
Find all posts by this user
Quote this message in a reply
01-03-2012, 10:54 AM
Post: #5
RE: Beginner need help. Is oclhashcat-lite support hashlist?
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..
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply