Skip to content

Commit 4d76964

Browse files
committed
use a random secret key (bytecodealliance#3971)
1 parent a1e30e3 commit 4d76964

File tree

1 file changed

+1
-1
lines changed
  • tests/fuzz/wasm-mutator-fuzz/server/app

1 file changed

+1
-1
lines changed

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)