Hi,
We currently using wildfly-26.1.1.Final built using wildfly feature pack. Recently we received a warning from our dependency check tool indicating that org.yaml.snakeyaml-1.18.jar is triggering a High severity CVE
https://nvd.nist.gov/vuln/detail/CVE-2022-25857
We would be safe to upgrade
snakeyaml to version 1.31. I am asking this question because the module file for snakeyaml in wildfly is marking it as a private dependency
------------------------------------------------------------------------------------------------------------------------
<module name="org.yaml.snakeyaml" xmlns="urn:jboss:module:1.9">
<properties>
<property name="jboss.api" value="private"/>
</properties>
<resources>
<resource-root path="snakeyaml-1.26.jar"/>
</resources>
<dependencies>
<module name="java.desktop"/>
<module name="java.logging"/>
<!--WFLY-14219 Remove deprecated <module name="javax.api"/> -->
</dependencies>
</module>
------------------------------------------------------------------------------------------------------------------------
Appreciate your help.
Anoop