hashcat Forum
maskprocessor increment with 2 digits applied - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html)
+--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html)
+--- Thread: maskprocessor increment with 2 digits applied (/thread-1836.html)

Pages: 1 2


maskprocessor increment with 2 digits applied - HzM - 12-14-2012

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.


RE: maskprocessor increment with 2 digits applied - radix - 12-14-2012

you need to specify each one separately then.

IE

?l?d?d
?l?l?d?d
?l?l?l?d?d


RE: maskprocessor increment with 2 digits applied - HzM - 12-14-2012

Thnx or reply.

Can't I use the increment option?
I don't wanna manually try a separate line of characters every night Wink


RE: maskprocessor increment with 2 digits applied - radix - 12-14-2012

because increment works left to right. I'm sure you could use bash to do what you want


RE: maskprocessor increment with 2 digits applied - M@LIK - 12-14-2012

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



RE: maskprocessor increment with 2 digits applied - HzM - 12-20-2012

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,


RE: maskprocessor increment with 2 digits applied - M@LIK - 12-20-2012

-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.


RE: maskprocessor increment with 2 digits applied - HzM - 12-20-2012

THNX for quick reply.

What do you mean with separate masks?
I'm now using you're suggested commandline.


RE: maskprocessor increment with 2 digits applied - M@LIK - 12-20-2012

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



RE: maskprocessor increment with 2 digits applied - HzM - 12-20-2012

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.