UCF STIG Viewer Logo

Idle timeout for management application must be set to 10 minutes.


Overview

Finding ID Version Rule ID IA Controls Severity
V-222979 TCAT-AS-000970 SV-222979r615938_rule Medium
Description
Tomcat can set idle session timeouts on a per application basis. The management application is provided with the Tomcat installation and is used to manage the applications that are installed on the Tomcat Server. Setting the idle timeout for the management application will kill the admin user's session after 10 minutes of inactivity. This will limit the opportunity for unauthorized persons to hijack the admin session. This setting will also affect the default timeout behavior of all hosted web applications. To adjust the individual hosted application settings that are not related to management of the system, modify the individual application web.xml file if application timeout requirements differ from the STIG. Satisfies: SRG-APP-000389, SRG-APP-000220
STIG Date
Apache Tomcat Application Sever 9 Security Technical Implementation Guide 2021-12-27

Details

Check Text ( C-24651r426381_chk )
If the manager application has been deleted from the system, this is not a finding.

From the Tomcat server as a privileged user, run the following commands:

sudo grep -i session-timeout $CATALINA_BASE/webapps/manager/META-INF/web.xml

sudo grep -i session-timeout
$CATALINA_BASE/conf/web.xml

If the session-timeout setting is not configured to be 10 minutes in at least one of these files, this is a finding.
Fix Text (F-24640r622488_fix)
From the Tomcat server as a privileged user:

To affect session timeout for all applications including the management application, edit the:
$CATALINA_BASE/conf/web.xml file.

To affect session timeout for the management application only, edit the:
$CATALINA_BASE/webapps/manager/META-INF/web.xml file.

Locate the session-timeout setting located within the session-config element.

Modify the session-timeout setting to be 10 minutes.

Save the file.

sudo systemctl restart tomcat
sudo systemctl daemon-reload