Browse Source

Make secure - no more silly hashes

master
Pete Shadbolt 6 years ago
parent
commit
5cf8016799
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app.py

+ 2
- 2
app.py View File

@@ -3,7 +3,7 @@ from flask_redis import FlaskRedis
import json, abp, markdown import json, abp, markdown
from pprint import pprint from pprint import pprint
import raussendorf import raussendorf
import humanhash
import uuid


DAY = 60*60*24 DAY = 60*60*24
app = Flask(__name__) app = Flask(__name__)
@@ -11,7 +11,7 @@ redis = FlaskRedis(app)


@app.route("/") @app.route("/")
def index(): def index():
secret, uuid = humanhash.uuid()
secret = str(uuid.uuid4())
return redirect("/{}".format(secret)) return redirect("/{}".format(secret))


@app.route("/<uuid>") @app.route("/<uuid>")


Loading…
Cancel
Save