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 vRealize Operations Manager 6.x tc Server Security Technical Implementation Guide

V-241676

CAT II (Medium)

tc Server UI must be configured with a cross-site scripting (XSS) filter.

Rule ID

SV-241676r879650_rule

STIG

VMware vRealize Operations Manager 6.x tc Server Security Technical Implementation Guide

Version

V1R2

CCIs

CCI-001094

Discussion

Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications. XSS enables attackers to inject client-side scripts into web pages viewed by other users. A cross-site scripting vulnerability may be used by attackers to bypass access controls such as the same-origin policy. As a web server, tc Server can be vulnerable to XSS if steps are not taken to mitigate the threat. VMware provides the XssFilter component to provide a layer of defense against XSS. Filters are Java objects that performs filtering tasks on either the request to a resource (a servlet or static content), or on the response from a resource, or both.

Check Content

At the command prompt, execute the following command:

grep -B 2 -A 7 XssFilter /usr/lib/vmware-vcops/tomcat-web-app/webapps/ui/WEB-INF/web.xml

If the XSS filter is not present, this is a finding.

Fix Text

Navigate to and open /usr/lib/vmware-vcops/tomcat-web-app/webapps/ui/WEB-INF/web.xml.

Configure a <filter> node with the below configuration:

   <filter>
      <filter-name>xssfilter</filter-name>
      <filter-class>com.vmware.vcops.ui.util.XssFilter</filter-class>

      <init-param>
         <!-- Comma separated list of URLs that will be sanitized by this filter  -->
         <param-name>fileIncludes</param-name>
         <param-value>/vcops/services/api.js,/vcops/services/api-debug.js,/vcops/services/api-debug-doc.js</param-value>
      </init-param>
   </filter>
   <filter-mapping>
      <filter-name>xssfilter</filter-name>
      <url-pattern>/vcops/services/*</url-pattern>
   </filter-mapping>