Comment 4Jonathan Christison
2020-06-26 10:27:58 UTC
Mitigation:
The JMX instrumentation agent is the vulnerable component in this, if not being used it can be disabled in the following ways
* As a Java system property -
`-Dorg.apache.camel.jmx.disabled=true` as java system property
* Using the CamelContext method -
```java
CamelContext camel = new DefaultCamelContext();
camel.disableJMX();
```
* If using spring altering the spring configuration -
```xml
<camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
<jmxAgent id="agent" disabled="true"/>
...
</camelContext>
```