UCF STIG Viewer Logo

ESX Agent Manager must limit the number of concurrent connections permitted.


Overview

Finding ID Version Rule ID IA Controls Severity
V-239373 VCEM-67-000002 SV-239373r674613_rule Medium
Description
Resource exhaustion can occur when an unlimited number of concurrent requests are allowed on a website, facilitating a denial-of-service attack. Unless the number of requests is controlled, the web server can consume enough system resources to cause a system crash. Mitigating this kind of attack will include limiting the number of concurrent HTTP/HTTPS requests. In Tomcat, each incoming request requires a thread for the duration of that request. If more simultaneous requests are received than can be handled by the currently available request processing threads, additional threads will be created up to the value of the maxThreads attribute.
STIG Date
VMware vSphere 6.7 EAM Tomcat Security Technical Implementation Guide 2022-01-03

Details

Check Text ( C-42606r674611_chk )
At the command prompt, execute the following command:

# xmllint --xpath '/Server/Service/Executor[@name="tomcatThreadPool"]/@maxThreads' /usr/lib/vmware-eam/web/conf/server.xml

Expected result:

maxThreads="300"

If the output does not match the expected result, this is a finding.
Fix Text (F-42565r674612_fix)
Navigate to and open:

/usr/lib/vmware-eam/web/conf/server.xml

Navigate to the mode with the name of tomcatThreadPool and configure with the value 'maxThreads="300"'

Note: The node should be configured as follows:

minSpareThreads="50"
name="tomcatThreadPool"
namePrefix="tomcat-http--"/>