summaryrefslogtreecommitdiff
path: root/include/sessions.hpp
diff options
context:
space:
mode:
authorJason M. Bills <jason.m.bills@linux.intel.com>2021-08-06 01:20:25 +0300
committerEd Tanous <ed@tanous.net>2021-08-12 21:19:34 +0300
commitdc414b50c19bea912babb00cf8f1e090dbbcc3b7 (patch)
tree7d9d49801e95c28887064394205b810d43ea78a4 /include/sessions.hpp
parent735ef6d87392d643901ffede8042652b29d8cce7 (diff)
downloadbmcweb-dc414b50c19bea912babb00cf8f1e090dbbcc3b7.tar.xz
Reduce session timeout to 30 minutes
This reduces our web session timeout to 30 minutes per NIST guidelines: "Reauthentication of the subscriber SHALL be repeated following any period of inactivity lasting 30 minutes or longer." https://pages.nist.gov/800-63-3/sp800-63b.html Change-Id: Icb600b5bc026107f582bc93be355bc5e2b46677d Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
Diffstat (limited to 'include/sessions.hpp')
-rw-r--r--include/sessions.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sessions.hpp b/include/sessions.hpp
index a448b24c0f..b0d6ca7f39 100644
--- a/include/sessions.hpp
+++ b/include/sessions.hpp
@@ -412,7 +412,7 @@ class SessionStore
AuthConfigMethods authMethodsConfig;
private:
- SessionStore() : timeoutInSeconds(3600)
+ SessionStore() : timeoutInSeconds(1800)
{}
};