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
|
import hashlib, uuid
import logging
import pickle
log = logging.getLogger('rhizi')
def add_user_login(htpasswd_path, salt, u, p):
with open(htpasswd_path, 'rb') as f:
data = f.read()
pw_db = pickle.loads(data)
with open(htpasswd_path, 'wb') as f:
pw_db[u] = hash_pw(str(p), salt)
pickle.dump(pw_db, f)
log.info('htpasswd db: added entry: user: %s, pw: %s...' % (u, pw_db[u][:5]))
def hash_pw(pw_str, salt_str):
salt = hashlib.sha512(salt_str).hexdigest()
ret = hashlib.sha512(pw_str + salt).hexdigest()
return ret
def validate_login(config, u, p):
htpasswd_path = config.htpasswd_path
salt = config.secret_key
with open(htpasswd_path) as f:
pw_db = pickle.load(f)
existing_pw_hash = pw_db.get(u)
if None == existing_pw_hash:
raise Exception('Not authorized')
if hash_pw(p, salt) != existing_pw_hash:
raise Exception('Not authorized')
|