-
Notifications
You must be signed in to change notification settings - Fork 18
/
doc.py
31 lines (20 loc) · 805 Bytes
/
doc.py
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
VERSION = '0.5'
HELP = '''
=== phone number wordlist generator version 0.5 ===
https://github.com/toxydose
------------------------------------------------------
-Generates SNs (subscriber numbers) from 4 to 10 digits as raw output:
4 digits: from 0000 to 9999
5 digits: from 00009 to 99999
...
10 digits: from 0000000000 to 9999999999
-Standard raw output is 7 digits
-Allows to add any prefixes (e.g CC, NDC)
-You have to set prefixes manually, just write them to the file "prefix.txt"
-Each prefix should be written in a new line put your custom prefixes in the file "prefix.txt"
$ python3 pnwgen.py
-Allows to add permanent suffix. Just put your suffix in the argument when script is launching.
$ python3 pnwgen.py [suffix]
Quick launch:
$ python3 pnwgen.py [prefix] [suffix] [length]
'''