Preventing XML External Injection in Soap-Based Web Services in JBoss EAP 5.0.1
1 answer
To prevent the object from expanding on public RESTEasy XML endpoints, add it to web.xml:
<context-param>
<param-name>resteasy.document.expand.entity.references</param-name>
<param-value>false</param-value>
</context-param>
I found it here, this issue is related to versions 7.7 and 8.4, but may work for older versions as well.
0
source to share