The security team has found the vulnerabilities in the CA Access Gateway (SPS) servers:
Missing Content Security Policy Header
Server Banner Disclosure
What are the remediation steps?
SiteMinder CA Access Gateway (SPS)
HTTP Security Headers are not enabled by default and are considered optional.
Sometimes security teams will mandate to set HTTP Security Headers in responses:
<Install_Dir>/secure-proxy/httpd/conf/httpd.conf
LoadModule headers_module modules/mod_headers.so
<IfModule mod_headers.c>
Header set X-Frame-Options "SAMEORIGIN"
Header set X-XSS-Protection "1; mode=block"
Header set X-Content-Type-Options "nosniff"
Header always set Strict-Transport-Security "max-age=63072000; includeSubDomains"
</IfModule>
The same modifications applies to Web Agent when running on Apache or IBM HTTP Server.