Skip to content

Alireza-Razavi/PassGen

Repository files navigation

PassGen

Powerful password list generator to use in bruteforce attacks.

  • Supports multi threading

Requirement(s)

  • python3

Example cmd

  • 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:

constChars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '@', '+', '-', '?', '.', '_']

Releases

No releases published

Packages

No packages published

Languages