stdout problem...
#1
I have a dictionary with 17567509 passwords...

for example I have two rule files:

case_u.rule:
u

and

case_l.rule:
l

When I run the script:
hashcat --stdout -a 0 my.dic -r case_u.rule -o out1.dic

and other script:
hashcat --stdout -a 0 my.dic -r case_l.rule -o out2.dic


Files out1.dic and out2.dicĀ files have different number of lines in the output of the work...
Why does this happen?
All three files must have the same number of lines!
Reply
#2
I can't recreate this, what version of Hashcat and what wordlist are you using?

Code:
> ./hashcat --stdout -a 0 Wordlists/rockyou.txt -r xrules.txt -o out1.dic
> ./hashcat --stdout -a 0 Wordlists/rockyou.txt -r xrules2.txt -o out2.dic
> wsl wc -l out*.dic
14344384 out1.dic
14344384 out2.dic
Reply