-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassgen.py
142 lines (119 loc) · 5 KB
/
passgen.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
from distutils import util
from cmd import Cmd
from tabulate import tabulate
import string
import random
from main import MainPrompt
class Prompt(Cmd):
def __init__(self, cls):
super(Prompt, self).__init__()
self.prompt = '{blue}program {cyan}(passgen) ➥ {reset}'.format(blue=cls['BLUE'], cyan=cls['CYAN'], reset=cls['RESET'])
self.cls = cls
# We define the settings here
settings = {
'LENGTH': {
'value': 16,
'description': 'The length of the password',
},
'LOWERCASE': {
'value': True,
'description': 'Whether or not to include lowercase characters',
},
'UPPERCASE': {
'value': True,
'description': 'Whether or not to include uppercase characters',
},
'NUMBERS': {
'value': True,
'description': 'Whether or not to include lowercase numbers',
},
'SYMBOLS': {
'value': False,
'description': 'Whether or not to include lowercase symbols',
},
'DUPLICATES': {
'value': False,
'description': 'Whether or not to include duplicate characters',
},
}
def do_help(self, _ln):
print('\nAll commands that can be used within this module can be found below: ')
cmd_list = [
['settings', 'View current settings'],
['set', 'Set the value of a setting'],
['generate', 'Generate a password'],
['back', 'Return to the previous prompt']
]
print(tabulate(cmd_list, stralign="center", tablefmt="fancy_grid",
headers=[self.cls['BLUE'] + "Command" + self.cls['RESET'],
self.cls['BLUE'] + "Description" + self.cls['RESET']]))
def do_settings(self, _ln):
settings_list = []
for s in self.settings:
settings_list.append([s, self.settings[s]['value'], self.settings[s]['description']])
print(tabulate(settings_list, stralign="center", tablefmt="fancy_grid",
headers=[self.cls['BLUE'] + "Setting" + self.cls['RESET'],
self.cls['BLUE'] + "Value" + self.cls['RESET'],
self.cls['BLUE'] + "Description" + self.cls['RESET']]))
def do_set(self, ln):
arr = ln.split(' ')
opt_name = arr.pop(0).upper()
opt_value = ' '.join(arr)
# Check if the specified setting exists
if opt_name in self.settings:
if opt_name == 'LENGTH':
try:
self.settings['LENGTH']['value'] = int(opt_value)
except ValueError:
print(self.cls['RED'] + 'You must enter a number.')
return
else:
try:
# Try to convert the input to a boolean
self.settings[opt_name]['value'] = bool(util.strtobool(opt_value))
except ValueError:
# Catch a value error and display a message
print(self.cls['RED'] + 'You must enter either \'yes\' or \'no\'.')
return
print(self.cls['GREEN'] + 'Successfully updated the settings.')
else:
print(self.cls['RED'] + 'That value cannot be set.')
def do_generate(self, _ln):
lng = self.settings['LENGTH']['value']
if lng < 1:
print(self.cls['RED'] + 'You must at least generate one number.')
return
low = self.settings['LOWERCASE']['value']
upp = self.settings['UPPERCASE']['value']
num = self.settings['NUMBERS']['value']
sym = self.settings['SYMBOLS']['value']
if not low and not upp and not num and not sym:
print(self.cls['RED'] + 'You must at least select one set of allowed characters.')
return
char_set = ''
# Construct the char_set string with all the configured character categories
if low:
char_set += string.ascii_lowercase
if upp:
char_set += string.ascii_uppercase
if num:
char_set += string.digits
if sym:
char_set += string.punctuation
# Convert string chararacter set to array
char_set = list(char_set)
if self.settings['DUPLICATES']['value']:
pwd = ''
for i in range(0, lng):
pwd += char_set[random.randint(0, len(char_set) - 1)]
print(self.cls['GREEN'] + 'Password successfully generated: ' + pwd)
else:
random.shuffle(char_set)
pwd_arr = random.choices(char_set, k=lng)
print(self.cls['GREEN'] + 'Password successfully generated: ' + ''.join(pwd_arr))
def default(self, ln):
ln = ln.lower()
if ln == 'back' or ln == 'b':
MainPrompt(self.cls).cmdloop()
return True
print(self.cls['RED'] + 'That\'s not a valid command. Use \'help\' for a list of commands.' + self.cls['RESET'])