Adding characters in the word file
#1
Hello

I have a list of words in a file txt, I want, for example, to change all words to lowercase letters, or I want all words to start with "!" or "@" or add digits to them from 1-100. A few years ago I created such files but now I don't remember what program it could be. I used maskprocessor a lot but I don't see that it was possible to insert the entire txt file with words there.
Reply
#2
Take a look at rules

https://hashcat.net/wiki/doku.php?id=rule_based_attack
Reply
#3
(09-21-2024, 11:44 AM)Snoopy Wrote: Take a look at rules

https://hashcat.net/wiki/doku.php?id=rule_based_attack


I know rule attack. But I need something to be able to change the letters to lowercase, for example, and a special character before them, and at the same time add randomly selected numbers
Reply
#4
(09-23-2024, 07:30 PM)kontotestowe1813 Wrote:
(09-21-2024, 11:44 AM)Snoopy Wrote: Take a look at rules

https://hashcat.net/wiki/doku.php?id=rule_based_attack


I know rule attack. But I need something to be able to change the letters to lowercase, for example, and a special character before them, and at the same time add randomly selected numbers

you can "stack or combine rules"

rulefile:
l ^! $1

pass:
MyPasswort

output:
!mypassword1
Reply