-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUSAGE
34 lines (27 loc) · 1.38 KB
/
USAGE
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
31
32
33
USAGE:
root@ninja:/tools/git/UsernameGenerator# python user-gen.py
Target UserName Generator ( TUG ) v06
usage: user-gen.py names.txt -FLAG [@email.com]
GENERATE LIST WITHOUT EMAIL
-lnfn is LastnameFirstname -- DoeJohn
-fnln is FirstnameLastname -- JohnDoe
-filn is FirstinitialLastname -- JDoe
-lifn is LastinitialFirstname -- DJohn
-fdl is firstname DOT lastname -- John.Doe
-ldf is lastname DOT firstname -- Doe.John
-ful is firstname _ lastname -- John_Doe
-luf is lastname _ firstname -- Doe_John
-all prints all combinations -- ALL
example: user-gen.py names.txt -FLAG
GENERATE LIST WITH EMAIL
-lnfn_email is [email protected] -- [email protected]
-fnln_email is [email protected] -- [email protected]
-filn_email is [email protected] -- [email protected]
-lifn_email is [email protected] -- [email protected]
-fdl_email is Firstname DOT [email protected] -- [email protected]
-ldf_email is Lastname DOT [email protected] -- [email protected]
-ful_email is [email protected] -- [email protected]
-luf_email is [email protected] -- [email protected]
-all_email is ALL NAMING CONVENTIONS @acme.com ----
example user-gen.py names.txt -FLAG_email @acme.com
NOTE: Input text file should be in 'firstname lastname' format. Only tested on linux text files.