-
Notifications
You must be signed in to change notification settings - Fork 104
Description
Hi!
It would be pretty nice if one could define that some words of the wordlist may appear at most once in generated passwords.
Or even multiple wordlists with min= and max= variables in the first line, which define how often words of the specific wordlist are allowed to appear in a generated password.
For example:
wordlist1.txt (normal wordlist) contains the lines:
Cat
Dog
wordlist2.txt contains the lines:
min=1 max=1
Bird
The commandline could look like:
pp64.exe --elem-cnt-min=1 --elem-cnt-max=16 --mult-wrdl=2 wordlist1.txt wordlist2.txt | hashcat.exe ...
In this case the following passwords would be possible:
CatCatDogBird
CatDogDogBird
CatDogDogBirdCat
...
But not:
CatBirdBird
I'd also appreciate the option to define that an element that can be repeated in a generated password is not allowed to appear twice in a row.
Maybe by defining a "distance" variable. distance=1 means between Cat and Cat there has to be 1 different element.
I believe these options can decrease cracking time significantly in some cases.
And also they would be unique features, wouldn't they?
Love
SuvetSurah