Skip to content

Commit 8d51a3c

Browse files
authored
use a random secret key (#3971)
1 parent 9916813 commit 8d51a3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tests/fuzz/wasm-mutator-fuzz/server/app

tests/fuzz/wasm-mutator-fuzz/server/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
5757

5858

59-
app.secret_key = "hwhefsewljfejrlesjfl"
59+
app.secret_key = os.urandom(12).hex()
6060

6161
db = SQLAlchemy(app)
6262

0 commit comments

Comments
 (0)