Skip to content

Commit

Permalink
use a random secret key (bytecodealliance#3971)
Browse files Browse the repository at this point in the history
  • Loading branch information
lum1n0us authored Dec 19, 2024
1 parent 9916813 commit 8d51a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fuzz/wasm-mutator-fuzz/server/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False


app.secret_key = "hwhefsewljfejrlesjfl"
app.secret_key = os.urandom(12).hex()

db = SQLAlchemy(app)

Expand Down

0 comments on commit 8d51a3c

Please sign in to comment.