During the process of auditing a Java project using CodeQL
I discovered that Spring Boot 3 uses YAML as its configuration file format.
However, it seems that the CodeQL Java library does not currently support parsing YAML files.
Can CodeQL add support for YAML configuration files parse on java lib?
application.yml with vuln just like this(actuator endpoint * was exposed)
management:
endpoints:
web:
exposure:
include: "*"