This article details how to disable TLS v1.1 on SiteMinder Access Gateway servers running version 12.8.08.01 and older.
NOTE: SiteMinder 12.9 ships with TLS v1.1 disabled by default.
CA Access Gateway (SPS) 12.8SP8CR01 and older version on Windows and Linux
TLS v1.1 is vulnerable to a variety of attacks due to its reliance on weak SHA-1 hashing and the use of insecure cryptographic algorithms. It is typically advised to disable listeners from accepting connections using TLS v1.0 and TLS v1.1 (1).
SiteMinder Access Gateway is composed of several different components, including the SiteMinder Agent for Apache Tomcat, Apache HTTP Server, and the Apache Tomcat Application Server. The following sections describe how to disable TLS v1.1 on each component.
In Apache HTTP Server, the TLS settings are stored in the httpd-ssl.conf file, within the virtual host configuration (2).
<Install_Dir>\CA\secure-proxy\httpd\conf\extra<Install_Dir>/CA/secure-proxy/httpd/conf/extrahttpd-ssl.conf file for editing.<VirtualHost _{Name}_:{TCPPort}> ... SSLProtocol All -SSLv3 -SSLv2 -TLSv1 ...</VirtualHost>httpd-ssl.conf. However, if it is also defined within a specific virtual host, that value overrides the Default Virtual Host value. Therefore, it is critical to modify the SSLProtocol directive in both the Default Virtual Host and any specific virtual host where SSLProtocol has been explicitly defined. Virtual hosts that do not have SSLProtocol explicitly defined inherit the value from the Default Virtual Host and do not require a separate change.All — Enables all protocols+<protocol> — Adds the specified protocol-<protocol> — Removes the specified protocol (applies even if All is used)SSLProtocol All -SSLv3 -SSLv2 -TLSv1 -TLSv1.1In SiteMinder Access Gateway, the TLS settings for Tomcat are stored in the server.conf file.
<Install_Dir>\CA\secure-proxy\proxy-engine\<Install_Dir>/CA/secure-proxy/proxy-engine/<sslparams> # Set the SSL protocol version to support: TLSv1.1 and TLSv1.2 # NOTE: SSLv2 and SSLv3 are not recommended # NOTE: TLSv1 is not recommended - DE270536 versions="TLSv1.2,TLSv1.1"versions="TLSv1.2"