-
Notifications
You must be signed in to change notification settings - Fork 0
/
guide.txt
30 lines (18 loc) · 863 Bytes
/
guide.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# CUSTOM WORLIST CREATER
#+++++++++++++++++++++++++++ Usage ++++++++++++++++++++++++++++++++
```
usage: passgod.py [-h] [-chr CHARS] [-min MIN_LENGTH] [-max MAX_LENGTH]
[-out OUTPUT]
Python Wordlist Generator
optional arguments:
-h, --help show this help message and exit
-chr CHARS, --chars CHARS characters to iterate
-min MIN_LENGTH, --min_length MIN_LENGTH minimum length of characters
-max MAX_LENGTH, --max_length MAX_LENGTH maximum length of characters
-out OUTPUT, --output OUTPUT output of wordlist file.
```
### Example
```
$ python3 passgod.py -chr=abc -min=1 -max=4 -out=output/wordlist.txt
# or
$ python3 passgod.py --chars=abc --min_length=1 --max_length=4 --output=output/password.txt