Posts: 38
Threads: 5
Joined: Nov 2013
09-06-2020, 11:02 PM
(This post was last modified: 09-06-2020, 11:03 PM by XakEp.)
I was hoping someone could explain to me exactly what using -r twice in the same command with two different rule files does. Does it apply them at the same time or sequentially/separately to each guess?
example -
hashcat -m1000 -a0 -w4 -O -d 1,2,3,4 --hwmon-disable d:\pwdump.txt d:\wordlists\big\test.txt -r rules\dive.rule -r rules\hob064.rule
Posts: 930
Threads: 4
Joined: Jan 2015
It's the product of both rulesets - rule 1 from list 1 AND rule 1 from list 2, etc etc.
This is one reason why ':' (do nothing) is often included in rulesets, so that each rule from each wordlist is also independently applied.
There's a GitHub issue open requesting a way to apply them in series instead. (Today, you can do this by appending the files into another file, or running multiple commands).
It's handy to be able to choose either strategy.
~
Posts: 38
Threads: 5
Joined: Nov 2013
(09-06-2020, 11:41 PM)royce Wrote: It's the product of both rulesets - rule 1 from list 1 AND rule 1 from list 2, etc etc.
This is one reason why ':' (do nothing) is often included in rulesets, so that each rule from each wordlist is also independently applied.
There's a GitHub issue open requesting a way to apply them in series instead. (Today, you can do this by appending the files into another file, or running multiple commands).
It's handy to be able to choose either strategy.
Thank you! Something else to add to my methodology.