Powerful password list generator to use in bruteforce attacks.
- Supports multi threading
- python3
- python3 main.py <your_string> <password_range>
- python3 main.py abcd 8-12
The above command will generate all possible passwords that we can generate in range 8 - 12 with characters:
'a' + 'b' + 'c' + 'd' + 'A' + 'B' + 'C' + 'D' + 'The characters defined in main.py constantly'
(abcdABCD0123456789_@.-+?
will be permutated)
Tip: Remove or edit hard coded characters at this line:
Line 38 in bdfc893