STIGhubSTIGhub
STIGsSearchCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 3 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to VMware vSphere 7.0 vCenter Appliance UI Security Technical Implementation Guide

V-256790

CAT II (Medium)

vSphere UI must have mappings set for Java servlet pages.

Rule ID

SV-256790r889369_rule

STIG

VMware vSphere 7.0 vCenter Appliance UI Security Technical Implementation Guide

Version

V1R2

CCIs

CCI-000381

Discussion

Resource mapping is the process of tying a particular file type to a process in the web server that can serve that type of file to a requesting client and identify which file types are not to be delivered to a client. By not specifying which files can and cannot be served to a user, the web server could deliver to a user web server configuration files, log files, password files, etc. As Tomcat is a Java-based web server, the main file extension used is *.jsp. This check ensures the *.jsp and *.jspx file types has been properly mapped to servlets.

Check Content

At the command prompt, run the following command:  
 
# xmllint --format /usr/lib/vmware-vsphere-ui/server/conf/web.xml | sed 's/xmlns=".*"//g' | xmllint --xpath '/web-app/servlet-mapping/servlet-name[text()="jsp"]/parent::servlet-mapping' - 
 
Expected result: 
 
<servlet-mapping> 
  <servlet-name>jsp</servlet-name> 
  <url-pattern>*.jsp</url-pattern> 
  <url-pattern>*.jspx</url-pattern> 
</servlet-mapping> 
 
If the .jsp and .jspx file url-patterns are not configured as in the expected result, this is a finding.

Fix Text

Navigate to and open: 
 
/usr/lib/vmware-vsphere-ui/server/conf/web.xml 
 
Navigate to and locate the mapping for the JSP servlet. It is the <servlet-mapping> node that contains <servlet-name>jsp</servlet-name>. 
 
Configure the <servlet-mapping> node to look like the code snippet below: 
 
<!-- The mappings for the JSP servlet --> 
<servlet-mapping> 
  <servlet-name>jsp</servlet-name> 
  <url-pattern>*.jsp</url-pattern> 
  <url-pattern>*.jspx</url-pattern> 
</servlet-mapping> 
 
Restart the service with the following command: 
 
# vmon-cli --restart vsphere-ui