I think you misunderstood the requirement. I don't want to append to ALL passwords in a dictionary. I want to add the right amount of characters (5 in the case of "dog") only to the passwords that need this treatment to not be rejected.
append_d is a straightforward append to ALL passwords in the dictionary. A hybrid-mask attack is just as useless in this case.
I know I can manually prepare the dictionary in various ways, including splitlen and then specific rules for each len-specific dictionary. However, I was wondering if there's a built-in way to achieve this without doing it manually.
append_d is a straightforward append to ALL passwords in the dictionary. A hybrid-mask attack is just as useless in this case.
I know I can manually prepare the dictionary in various ways, including splitlen and then specific rules for each len-specific dictionary. However, I was wondering if there's a built-in way to achieve this without doing it manually.