hybrid dic + mask
#1
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
#2
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.
#3
thank you atom