mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-12 10:45:38 +02:00
Encrypted input db password
This commit is contained in:
parent
ef6a0727ac
commit
e89d354834
@ -13,6 +13,12 @@ services:
|
||||
volumes:
|
||||
- "{{ root }}/redis:/data"
|
||||
|
||||
{% if db_flavor == 'postgresql' and postgresql == 'internal' %}
|
||||
database:
|
||||
image: ${DOCKER_ORG:-mailu}/postgresql:${MAILU_VERSION:-{{ version }}}
|
||||
env_file: {{ env }}
|
||||
{% endif %}
|
||||
|
||||
# Core services
|
||||
front:
|
||||
image: ${DOCKER_ORG:-mailu}/nginx:${MAILU_VERSION:-{{ version }}}
|
||||
|
@ -8,6 +8,7 @@ import uuid
|
||||
import string
|
||||
import random
|
||||
import ipaddress
|
||||
import hashlib
|
||||
|
||||
|
||||
app = flask.Flask(__name__)
|
||||
@ -77,6 +78,8 @@ def build_app(path):
|
||||
data = flask.request.form.copy()
|
||||
data['uid'] = str(uuid.uuid4())
|
||||
data['dns'] = str(ipaddress.IPv4Network(data['subnet'])[-2])
|
||||
md5_password = hashlib.md5(data['db_pw'].encode())
|
||||
data['db_pw'] = md5_password.hexdigest()
|
||||
db.set(data['uid'], json.dumps(data))
|
||||
return flask.redirect(flask.url_for('.setup', uid=data['uid']))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user