12-15-2022, 01:49 PM
rules are made for modifying existing passwords, not for generating new ones, rules take passwords from a given list and modify these words, assume your list contains "Pass" and your ruleset would contain these two rules
:
$1 $2
this would result in 2 passwordcandidates
Pass
Pass12
when you really wann to generate passes, you can stick to bruteforce and masks, but this approach would generate masses of "unlikely" passwordcandidates like
Pppp12
:
$1 $2
this would result in 2 passwordcandidates
Pass
Pass12
when you really wann to generate passes, you can stick to bruteforce and masks, but this approach would generate masses of "unlikely" passwordcandidates like
Pppp12