Sequencing Rules - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: Sequencing Rules (/thread-4916.html) Pages:
1
2
|
Sequencing Rules - simplyslow - 12-18-2015 Is there a way of sequencing a series of rules through oclHashcat? Perhaps putting the rules in a folder and using the command -r <rulesfolder>? or something similar? RE: Sequencing Rules - epixoip - 12-18-2015 for r in rules/*; do ./oclHashcat ... -r $r; done RE: Sequencing Rules - simplyslow - 12-18-2015 (12-18-2015, 08:57 AM)epixoip Wrote: for r in rules/*; do ./oclHashcat ... -r $r; done cudaHashcat64.bin' -m 0 -a 0 '/media/f14/Transcend/Stratfor/stratfor.hash' -r $'/home/f14/Downloads/cudaHashcat-2.01/rules/good_rules' --remove -o stratcrack.txt Generating bitmap tables with 17 bits... and just hung up. I'm not clear on what I'm doing wrong. RE: Sequencing Rules - Xanadrel - 12-18-2015 Just run ./cudaHashcat64.bin, it will show you cudaHashcat's usage. RE: Sequencing Rules - epixoip - 12-19-2015 Looks like you're doing quite a bit wrong. Damn near everything, in fact. RE: Sequencing Rules - simplyslow - 12-19-2015 (12-19-2015, 01:21 AM)epixoip Wrote: Looks like you're doing quite a bit wrong. Damn near everything, in fact. Well, that wasn't helpful. Perhaps then the Wiki documentation is poor. RE: Sequencing Rules - epixoip - 12-19-2015 Documentation is fine, I just don't think you understand what you're typing. Let's start with the fact you're missing a wordlist in the above attack. You also have options specified after the arguments. And then there's this... Quote:-r $'/home/f14/Downloads/cudaHashcat-2.01/rules/good_rules' What is that supposed to be? RE: Sequencing Rules - simplyslow - 12-19-2015 (12-19-2015, 01:46 AM)epixoip Wrote: Documentation is fine, I just don't think you understand what you're typing. That was my attempt at following your directions for sequencing rules that were in a folder or sub-directory. I see that I omitted the wordlist. RE: Sequencing Rules - epixoip - 12-19-2015 Hm, do you know what a loop is? RE: Sequencing Rules - simplyslow - 12-19-2015 (12-19-2015, 05:25 AM)epixoip Wrote: Hm, do you know what a loop is? Conceptually, yes. Specifically, no. |