Posts: 1
Threads: 1
Joined: Dec 2016
Hi, my wants is:
original value
4 Digit random numbers
Reversed original value
E.g
SYF is my original value.
SYF8888FYS
how can I do that?
Posts: 30
Threads: 4
Joined: Jan 2011
Maybe try: SYF?d?d?d?dFYS
Posts: 2
Threads: 0
Joined: Dec 2016
As i understood, you need to use maskprocessor to generate ruleset such this:
Code:
mp64.exe -o rule "rMr$?d$?d$?d$?d4"
(revert word, put reverted word in memory, revert again to original state, add four digits, append reverted word from memory to the end)
And then use this ruleset with
old non-OpenCL hashcat on your wordlist with original words:
Code:
hashcat-cli64.exe -r rule wordlist {...}
Started with v3, hashcat has some limitations in using of multiple rules.
Posts: 5,185
Threads: 230
Joined: Apr 2010
12-27-2016, 11:38 AM
(This post was last modified: 12-27-2016, 11:38 AM by atom.)
Quote:Started with v3, hashcat has some limitations in using of multiple rules.
Not sure what you mean. There's no such limitation!
Posts: 2
Threads: 0
Joined: Dec 2016
(12-27-2016, 11:38 AM)atom Wrote: Not sure what you mean. There's no such limitation!
I mean that rules like RULE_OP_MANGLE_APPEND_MEMORY or RULE_OP_MEMORIZE_WORD can be used with -j or -k only, and not in rulesets. As I understand from
this thread, hashcat legacy hasn't such limitation. But now I think that I misunderstood it, and legacy version of hashcat also can't use rulesets with M or 4 rules.