maskprocessor increment with 2 digits applied
#1
Hello, i wanna achieve this:

with maskprocessor and oclhashcat-plus i want to check my passwords which consists of random a-z characters followed by 2 digits. I wanna check passwords between length of 6-10 characters. I wanna use increment.
Is this the way to go?:

# mp64 --increment-min=6 --increment-max=10 ?l?l?l?l?l?l?l?l?d?d | ./oclhashcat64.bin -m 1100 bla.hccap

I believe above is doing this?:

a
b
...
aa
ab
..
..
zzzzzzzz99

What i want:

a00
a01
..
a99
b00
b01
..
zzzzzzzz99

Many thanx in advanced.
#2
you need to specify each one separately then.

IE

?l?d?d
?l?l?d?d
?l?l?l?d?d
#3
Smile 
Thnx or reply.

Can't I use the increment option?
I don't wanna manually try a separate line of characters every night Wink
#4
because increment works left to right. I'm sure you could use bash to do what you want
#5
To fully utilize GPU, use separate lines.

Or at least, pipe the a-z part only and use rules on -plus's side.
Code:
mp64 --increment-min=6 ?l?l?l?l?l?l?l?l | -plus -r ./hybrid/append_d.rule -r ./hybrid/append_d.rule meow.hccap
#6
Thnx for the reply. The last option works well!

Another question:

During cracking i press the "p" key, i thought it would pause thee process.
But nothing happens. Also pressing the "s" key for stopping doesn't work.

I use oclhashcat-plus.exe latest version (windows)

Why doesn't it pause ??

THNX in advanced,
#7
-plus reads s or p from STDIN (user's input), and since STDIN is busy with mp64 there's no way to read user's input, so the status show every 10 secs automatically.

Again, the neatest, best way to do this is to use separate masks.
#8
THNX for quick reply.

What do you mean with separate masks?
I'm now using you're suggested commandline.
#9
Code:
-plus hccap ?l?d?d
-plus hccap ?l?l?d?d
-plus hccap ?l?l?l?d?d
-plus hccap ?l?l?l?l?d?d
-plus hccap ?l?l?l?l?l?d?d
...

Run one at a time.
Another option is to make a loop:
Code:
masks.txt:
?l
?l?l
?l?l?l
?l?l?l?l
...

for /f %m in (masks.txt) do -plus hccap %m?d?d
#10
Ok, i get it. Thnx for the advice.

I'm gonna try some stuff.

Question: can i make my own hashed password? So that i can test some words.
Ntlm-hashed, wpa-psk, etc.