Hi,
Is the recent Apache Tomcat vulnerability "CVE-2025-24813" addressed by SAS?
I didn't find anything related to this vulnerability in the SAS Security Bulletins.
Thanks.
Since this is a question directly to the vendor, I suggest that you open a track to tech support or contact your accont responsible.
Hi,
Apparently the installation is vulnerable only if the "readonly" parameter in the Tomcat's "web.xml" is changed to "false" from it's default value of "true".
Is our Tomcat susceptible to CVE-2025-24813?
Solution Verified - Updated March 21 2025 at 3:15 PM -
Environment
Issue
Resolution
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>0</param-value>
</init-param>
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>readonly</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
$ grep readonly /etc/tomcat/web.xml | grep -v "<\!--"
$ grep readonly /path/to/JWS_HOME/tomcat/conf/web.xml | grep -v "<\!--"
$ grep readonly /path/to/webappname/WEB-INF/web.xml | grep -v "<\!--"
Your block is missing the 'readonly' parameter but if you look at the comments somewhere above in the file you'll find the following:
<!-- readonly Is this context "read only", so HTTP -->
<!-- commands like PUT and DELETE are -->
<!-- rejected? [true] -->
[true] is the default value so you should be ok.
You only need to change the file in: \SASConfig\Lev1\Web\WebAppServer\SASServer1_1\conf
Since the parameter is not modified and it already has the default value of "true" you don't have to change anything.
As already mentioned earlier, please report this to SAS Support and further assistance can then be provided. Thanks.
The SAS Users Group for Administrators (SUGA) is open to all SAS administrators and architects who install, update, manage or maintain a SAS deployment.
SAS technical trainer Erin Winters shows you how to explore assets, create new data discovery agents, schedule data discovery agents, and much more.
Find more tutorials on the SAS Users YouTube channel.