hashcat Forum
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


RE: Sequencing Rules - epixoip - 12-19-2015

Ok. Well the example I provided was a "for" loop, to let your shell loop over each rule file in the directory. So what you probably wanted to do was something like:

Code:
for r in ~/Downloads/cudaHashcat-2.01/rules/good_rules/*
do
    ./cudaHashcat64.bin --session stratfor /media/f14/Transcend/Stratfor/stratfor.hash wordlist -r $r
done



RE: Sequencing Rules - simplyslow - 12-19-2015

(12-19-2015, 05:34 AM)epixoip Wrote: Ok. Well the example I provided was a "for" loop, to let your shell loop over each rule file in the directory. So what you probably wanted to do was something like:

Code:
for r in ~/Downloads/cudaHashcat-2.01/rules/good_rules/*
do
   ./cudaHashcat64.bin --session stratfor /media/f14/Transcend/Stratfor/stratfor.hash wordlist -r $r
done

Thank you. That is clearer. I appreciate the time.