https://github.com/am2022/passgen
passgen or pass generator can make password lists for you
https://github.com/am2022/passgen
brute-force bruteforce c-plus-plus cplusplus cpp hacking-tool pass passgen password-generator password-list password-list-generator password-list-maker wordlist-generator
Last synced: 12 months ago
JSON representation
passgen or pass generator can make password lists for you
- Host: GitHub
- URL: https://github.com/am2022/passgen
- Owner: am2022
- License: mit
- Created: 2022-12-13T05:25:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T07:58:06.000Z (about 3 years ago)
- Last Synced: 2025-03-29T16:51:15.350Z (about 1 year ago)
- Topics: brute-force, bruteforce, c-plus-plus, cplusplus, cpp, hacking-tool, pass, passgen, password-generator, password-list, password-list-generator, password-list-maker, wordlist-generator
- Language: C++
- Homepage:
- Size: 89.8 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# passgen
## passgen or pass generator can make password lists for you
## this is a c++ program so if you want to compile the code you should install g++ on your computer.
## help for argv in passgen:
* Use characters:
>if you want to take characters to passgen in argv; you should use -char and after that, you should write the characters.
>
use --num after -char to set "0123456789".
>
use --num-0 after -char to set "123456789".
>
use --small-letters after -char to set "abcdefghijklmnopqrstuvwxyz".
>
use --cap-letters after -char to set "ABCDEFGHIJKLMNOPQRSTUVWXYZ".
* Get help:
>if you want to get help for argv in passgen you can type -h or --help.
* Get output into a file:
>use -o and after that file name that you want to get output at that file.
* config start range:
>use -sr and the start range.
* config end range:
>use -er and end of range number.
* import chars with file:
>use -imp_char and after that file name.
* add a static string:
>use -static_string and after that enter your static string.
* add a static string end of the passwords:
>use -e_static_string and after that enter you static string.
* -showpass for show or hide passwords:
>y,Y,t,T to see the passwords, and other chars to hide them.
* You should use -exec end of the argv inputs.
>end of the argvs that you use you should put -exec for getting execute.
## how to build passgen?
### first install g++, or any compiler that you prefer.
### after that you should put standard to c++11; if you have g++ you can do it by -std=c++11 after g++.