hashcat Forum
hybrid dic + mask - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: General Help (https://hashcat.net/forum/forum-8.html)
+--- Thread: hybrid dic + mask (/thread-4228.html)



hybrid dic + mask - cr4zynou - 03-29-2015

hello,

in (hybrid dic + mask) Attack i use :

dictionary+mask
dic?d?d?d?d

and

mask+dictionary
?d?d?d?ddic

i want to know if i can use this :

?d?d?d?dDICTIONARY?d?d?d?d

thanks


RE: hybrid dic + mask - atom - 03-30-2015

You can not do this with a hybrid attack. But you can do it with stacked rules:

./oclHashcat -a 0 hash.txt -r rules/hybrid/prepend_d.rule -r rules/hybrid/append_d.rule

this would by like:

?dDICTIONARY?d

You can add more -r but maybe not 4x prepend and 4x append because this produces 100,000,000 rules. There is not unlimited space for rules. Usually up to 1 million, depending on your GPU.


RE: hybrid dic + mask - cr4zynou - 03-30-2015

thank you atom