An open API service indexing awesome lists of open source software.

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

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++.