Please provide steps / procedure to remediate Nessus scan has detected "HSTS Missing from HTTPS Server" vulnerability on the following SOI components:
a. SOI Manager - Port 7493
b. SOI UI - Port 7403
c. HelpDesk connector - Port 8443
Release : 4.2
Component : Service Operations Insight (SOI) Manager
Improper SSL configuration resolved by using the correct steps.
Please apply latest 4.2 Monthly Update KIT found here:
Please find below correct steps/ procedure to configure SSL:
<filter>
<filter-name>httpHeaderSecurity </filter-name>
<filter-class>org.apache.catalina.filters. HttpHeaderSecurityFilter</ filter-class>
<async-supported>true</async-supported>
<init-param>
<param-name>hstsEnabled</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>hstsMaxAgeSeconds</param-name>
<param-value>31536000</param-value>
</init-param>
<init-param>
<param-name>hstsIncludeSubDomains</param- name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>antiClickJackingEnabled</ param-name>
<param-value>false</param-value>
</init-param>
</filter><filter-mapping>
<filter-name>httpHeaderSecurity </filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
Please note below limitations: