Commit d2ae5f0c authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 476594: [SECURITY] Calling srand() at startup time in mod_perl makes the…

Bug 476594: [SECURITY] Calling srand() at startup time in mod_perl makes the same token be generated over and over Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=justdave, a=mkanat
parent 9151cc1c
......@@ -188,7 +188,7 @@ EOT
},
{
name => 'site_wide_secret',
default => generate_random_password(256),
default => sub { generate_random_password(256) },
desc => <<EOT
# This secret key is used by your installation for the creation and
# validation of encrypted tokens to prevent unsolicited changes,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment