![]() |
Beginner need help. Is oclhashcat-lite support hashlist? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-lite Support (https://hashcat.net/forum/forum-22.html) +--- Thread: Beginner need help. Is oclhashcat-lite support hashlist? (/thread-782.html) |
Beginner need help. Is oclhashcat-lite support hashlist? - alex - 01-02-2012 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 ![]() RE: Beginner need help. Is oclhashcat-lite support hashlist? - arex1337 - 01-02-2012 oclHashcat-lite is only for cracking a single hash. Use oclHashcat-plus. RE: Beginner need help. Is oclhashcat-lite support hashlist? - alex - 01-03-2012 Thank you. What about second part of my question? "And this part --custom-charset1=ud is correct for UPPERCASE and number? " RE: Beginner need help. Is oclhashcat-lite support hashlist? - forumhero - 01-03-2012 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 RE: Beginner need help. Is oclhashcat-lite support hashlist? - atom - 01-03-2012 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.. |