hashcat Forum
A Rule For not more then 2 consecutive number or letter - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html)
+--- Thread: A Rule For not more then 2 consecutive number or letter (/thread-4048.html)



A Rule For not more then 2 consecutive number or letter - fonzy35 - 02-06-2015

Is there a rule that i can make the will not repeat not more then 2 consecutive numbers in bruteforce attack using oclhascat64.exe?

Like in crunch the -d switch in the example below(no more then 2 consecutive number)

crunch 10 10 1234567890 -d 2@ -o Numberlist_d_swich.txt

I looked in to maskprocessor rule, but i didn't find any.

TIA


RE: A Rule For not more then 2 consecutive number or letter - atom - 02-06-2015

It's -q


RE: A Rule For not more then 2 consecutive number or letter - fonzy35 - 02-06-2015

I try with bruteforce oclhashcat v1.31, it say

oclHashcat64.exe: unknown option -- q


ERROR: Invalid argument specified

[code:]

oclHashcat64.exe -a 3 -m 0 --session=all --status --status-timer=60 -o "E:\HashcatGUI_044\tmp5A0C_found.txt" --outfile-format=3 --potfile-disable --remove -w 3 --gpu-temp-abort=80 -2 ?u "C:\Users\Me\AppData\Local\Temp\tmp5A0C.tmp" ?2?2?2?2?2?2?2?2?2?2?2 -q

[code]


RE: A Rule For not more then 2 consecutive number or letter - fonzy35 - 02-06-2015

Name Function Description Example Rule Input Word Output Word Note

Duplicate all q Duplicate every character q p@ssW0rd pp@@ssssWW00rrdd

ok, it's not exactly what i was searching for

more like a rule the only double letter or number once of each in deference placeholder
exemple

numeric 11 placeholer double

00123456789
01123456789
01223456789
11235678942
97353375624


RE: A Rule For not more then 2 consecutive number or letter - philsmd - 02-06-2015

(02-06-2015, 09:46 AM)fonzy35 Wrote: I looked in to maskprocessor rule, but i didn't find any.

The answer of atom was for maskprocessor ( https://hashcat.net/wiki/doku.php?id=maskprocessor , http://hashcat.net/tools/maskprocessor/ ), because you mentioned "maskprocessor".

if you look at maskprocessors help display:
mp64.exe --help
...
-q, --seq-max=NUM Maximum number of multiple sequential characters
...

oclHashcat does not directly support this feature, but if you really need it you can pipe the output of maskprocessor into oclHashcat

mp64.exe -q 2 ?a?a?a?a?a?a | oclHashcat64 -m ...


RE: A Rule For not more then 2 consecutive number or letter - fonzy35 - 02-06-2015

Ah, ok thanks
Yea i got maskprocessor mix up with bruteforce.

Thanks atom and philsmd