Hi,
We currently using wildfly-
33.0.1.Final built using wildfly feature pack. Recently we received a warning from our dependency check tool indicating that velocity-engine-core-2.3.jar (shaded: commons-io:commons-io:2.8.0) is triggering a high severity CVE
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2024-47554
We would be safe to upgrade
velocity-engine-core to version 2.4. I am asking this question because the module file for commons-io in wildfly is marking it as a private dependency
------------------------------------------------------------------------------------------------------------------------
<module name="org.apache.velocity" xmlns="urn:jboss:module:1.9">
<properties>
<property name="jboss.api" value="private"/>
</properties>
<resources>
<resource-root path="velocity-engine-core-2.3.jar"/>
</resources>
<dependencies>
<module name="java.naming"/>
<module name="java.sql"/>
<module name="org.apache.commons.collections"/>
<module name="org.apache.commons.lang3"/>
<module name="org.slf4j"/>
</dependencies>
</module>
------------------------------------------------------------------------------------------------------------------------
Appreciate your help.
Anoop