-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathutils.py
360 lines (275 loc) · 9.73 KB
/
utils.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
# _ __
# | |/ /___ ___ _ __ ___ _ _ ®
# | ' </ -_) -_) '_ \/ -_) '_|
# |_|\_\___\___| .__/\___|_|
# |_|
#
# Keeper Commander
# Copyright 2021 Keeper Security Inc.
# Contact: [email protected]
#
import base64
import json
import math
import re
import time
from urllib.parse import urlparse, parse_qs, unquote
from . import crypto
from .constants import EMAIL_PATTERN
VALID_URL_SCHEME_CHARS = '+-.:'
def generate_uid(): # type: () -> str
b = crypto.get_random_bytes(16)
if (b[0] & 0xf8) == 0xf8:
b = bytes([b[0] & 0x7f]) + b[1:]
return base64_url_encode(b)
def generate_aes_key(): # type: () -> bytes
return crypto.get_random_bytes(32)
def current_milli_time(): # type: () -> int
return int(round(time.time() * 1000))
def base64_url_decode(s): # type: (str) -> bytes
return base64.urlsafe_b64decode(s + '==')
def base64_url_encode(b): # type: (bytes) -> str
bs = base64.urlsafe_b64encode(b)
return bs.rstrip(b'=').decode('ascii')
def string_to_bytes(string):
return string.encode('utf-8')
def json_to_base64(json_str):
json_bytes = string_to_bytes(json_str)
json_b64 = base64.b64encode(json_bytes).decode()
return json_b64
def decrypt_encryption_params(encryption_params, password): # type: (bytes, str) -> bytes
if len(encryption_params) != 100:
raise Exception('Invalid encryption params: bad params length')
_ = int.from_bytes(encryption_params[0:1], byteorder='big', signed=False)
iterations = int.from_bytes(encryption_params[1:4], byteorder='big', signed=False)
salt = encryption_params[4:20]
encrypted_data_key = encryption_params[20:]
key = crypto.derive_key_v1(password, salt, iterations)
decrypted_data_key = crypto.decrypt_aes_v1(encrypted_data_key, key, use_padding=False)
# validate the key is formatted correctly
if len(decrypted_data_key) != 64:
raise Exception('Invalid data key length')
if decrypted_data_key[:32] != decrypted_data_key[32:]:
raise Exception('Invalid data key: failed mirror verification')
return decrypted_data_key[:32]
def create_encryption_params(password, salt, iterations, data_key): # type: (str, bytes, int, bytes) -> bytes
key = crypto.derive_key_v1(password, salt, iterations)
enc_iter = int.to_bytes(iterations, length=3, byteorder='big', signed=False)
enc_iv = crypto.get_random_bytes(16)
enc_data_key = crypto.encrypt_aes_v1(data_key * 2, key, iv=enc_iv, use_padding=False)
return b'\x01' + enc_iter + salt + enc_data_key
def create_auth_verifier(password, salt, iterations): # type: (str, bytes, int) -> bytes
derived_key = crypto.derive_key_v1(password, salt, iterations)
enc_iter = int.to_bytes(iterations, length=3, byteorder='big', signed=False)
return b'\x01' + enc_iter + salt + derived_key
def is_url(test_str): # type: (str) -> bool
if not isinstance(test_str, str):
return False
url_parts = test_str.split('://')
url_scheme = url_parts[0]
valid_scheme = all(c.isalnum or c in VALID_URL_SCHEME_CHARS for c in url_scheme)
if len(test_str.split()) == 1 and len(url_parts) > 1 and valid_scheme:
return True
else:
return False
email_pattern = re.compile(EMAIL_PATTERN)
def is_email(test_str):
return email_pattern.match(test_str) is not None
def is_json(txt):
try:
json.loads(txt)
except ValueError as e:
return False
return True
def url_strip(url): # type: (str) -> str
if not url:
return ''
try:
result = urlparse(url)
return result.netloc + result.path
except Exception:
return ''
_breach_watch_key = base64_url_decode('phl9kdMA_gkJkSfeOYWpX-FOyvfh-APhdSFecIDMyfI')
def breach_watch_hash(password): # type: (str) -> bytes
return crypto.hmac_sha512(_breach_watch_key, f'password:{password}'.encode('utf-8'))
def chunk_text(text, func): # type (str, Callable[[str], bool]) -> Iterable[str]
acc = ''
for x in text:
if func(x):
acc += x
else:
if acc:
yield acc
acc = ''
if acc:
yield acc
def offset_char(text, func): # type (str, Callable[[str, str], int]) -> Iterable[int]
if not text:
return
prev = text[0]
for ch in text[1:]:
yield func(prev, ch)
prev = ch
def password_score(password): # type: (str) -> int
score = 0
if not password:
return score
if not isinstance(password, str):
return score
total = len(password)
uppers = 0
lowers = 0
digits = 0
symbols = 0
for x in password:
if x.isupper():
uppers += 1
elif x.islower():
lowers += 1
elif x.isdecimal():
digits += 1
else:
symbols += 1
ds = digits + symbols
if not password[0].isalpha():
ds -= 1
if not password[-1].isalpha():
ds -= 1
if ds < 0:
ds = 0
score += total * 4
if uppers > 0:
score += (total-uppers) * 2
if lowers > 0:
score += (total-lowers) * 2
if digits > 0:
score += digits * 4
score += symbols * 6
score += ds * 2
variance = 0
if uppers > 0:
variance += 1
if lowers > 0:
variance += 1
if digits > 0:
variance += 1
if symbols > 0:
variance += 1
if total >= 8 and variance >= 3:
score += (variance + 1) * 2
if digits + symbols == 0:
score -= total
if uppers + lowers + symbols == 0:
score -= total
rep_inc = 0
pwd_len = len(password)
rep_count = 0
for i in range(pwd_len):
char_exists = False
for j in range(pwd_len):
if i != j and password[i] == password[j]:
char_exists = True
rep_inc += pwd_len / abs(i - j)
if char_exists:
rep_count += 1
unq_count = pwd_len - rep_count
rep_inc = math.ceil(rep_inc if unq_count == 0 else rep_inc / unq_count)
if rep_count > 0:
score -= rep_inc
count = 0
for consec in [str.isupper, str.islower, str.isdecimal]:
for chunk in chunk_text(password, consec):
length = len(chunk)
if length >= 2:
count += length - 1
if count > 0:
score -= 2 * count
count = 0
for cnt, seq in [(26, str.isalpha), (10, str.isdecimal)]:
cnt = 0
for chunk in chunk_text(password.lower(), seq):
if len(chunk) >= 3:
offsets = [x if x >= 0 else x + cnt for x in offset_char(chunk, lambda x, y: ord(x) - ord(y))]
op = offsets[0]
for oc in offsets[1:]:
if oc == op:
if op != 0:
count += 1
else:
op = oc
symbols = {x[1]: x[0] for x in enumerate('!@#$%^&*()_+[]\\{}|;\':\",./<>?')}
cnt = 0
for chunk in chunk_text(password, symbols.__contains__):
if len(chunk) >= 3:
offsets = [x if x >= 0 else x + cnt for x in offset_char(chunk, lambda x, y: symbols[x] - symbols[y])]
op = offsets[0]
for oc in offsets[1:]:
if oc == op:
if op != 0:
count += 1
else:
op = oc
if count > 0:
score -= 3 * count
return score if 0 <= score <= 100 else 0 if score < 0 else 100
def is_pw_weak(pw_score): # type: (int) -> bool
return pw_score < 40
def is_pw_strong(pw_score): # type: (int) -> bool
return pw_score >= 60
def is_rec_at_risk(bw_result): # type (int) -> bool
return bw_result in (2, 3)
def passed_bw_check(bw_result): # type (int) -> bool
return bw_result in (0, 1)
def confirm(msg):
"""Simple confirmation through user input
msg(str): Message expecting a yes or no answer
Returns True if answer is "yes" and False otherwise.
"""
question = f'{msg} (y/n) '
answer = ''
while answer not in ('y', 'n'):
answer = input(question).lower()
return answer == 'y'
def size_to_str(size): # type: (int) -> str
if not isinstance(size, int):
return ''
if size < 2000:
return f'{size} b'
size = size / 1024
if size < 1000:
return f'{size:.2f} Kb'
size = size / 1024
if size < 1000:
return f'{size:.2f} Mb'
size = size / 1024
return f'{size:,.2f} Gb'
def parse_totp_uri(uri): # type: (str) -> Dict[str, Union[str, int, None]]
def parse_int(val):
return val and int(val)
def decode_uri_component(component): # type: (str) -> str
return unquote(component or '').strip()
result = dict()
if not uri:
return result
parsed = urlparse(uri)
if parsed.scheme == 'otpauth':
label = re.sub(r'^/+', '', parsed.path or '')
parts = re.split(r':|%3A', label)
parts = [part for part in parts if part]
account_name = len(parts) and parts.pop()
issuer = len(parts) and parts.pop()
parsed = parse_qs(parsed.query)
issuers = parsed.get('issuer')
secrets = parsed.get('secret')
algorithms = parsed.get('algorithm')
digits_vals = parsed.get('digits')
periods = parsed.get('period')
result = {
'issuer': decode_uri_component(issuers and next(iter(issuers)) or issuer),
'account': decode_uri_component(account_name),
'secret': secrets and next(iter(secrets)),
'algorithm': algorithms and next(iter(algorithms)) or 'SHA1',
'digits': parse_int(digits_vals and next(iter(digits_vals))) or 6,
'period': parse_int(periods and next(iter(periods))) or 30
}
return result