Maybe single quotes vs double quotes? (Are you Windows?)
Here's a working example. I generate a ruleset that sounds sort of like what you're after (though I'm *appending* space and two digits):
And here I show that ruleset in action, operating on a single-word wordlist ("blah"), piped in, and using --stdout to show the candidate passwords being generated:
Here's a working example. I generate a ruleset that sounds sort of like what you're after (though I'm *appending* space and two digits):
Code:
$ mp64 '$ $?d $?d' | head
$ $0 $0
$ $0 $1
$ $0 $2
$ $0 $3
$ $0 $4
$ $0 $5
$ $0 $6
$ $0 $7
$ $0 $8
$ $0 $9
$ mp64 '$ $?d $?d' >append_space2d.rule
And here I show that ruleset in action, operating on a single-word wordlist ("blah"), piped in, and using --stdout to show the candidate passwords being generated:
Code:
$ echo blah | hashcat --stdout -r append_space2d.rule | head
blah 01
blah 02
blah 03
blah 04
blah 05
blah 06
blah 07
blah 08
blah 09
~