The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade org.apache.activemq:apache-activemq
to version 6.1.2 or higher.
org.apache.activemq:apache-activemq is a Message Broker and Client implementations.
Affected versions of this package are vulnerable to Improper Access Control due to the default configuration not securing the API web context, which includes both the Jolokia JMX REST API and the Message REST API. This oversight allows unauthorized access, enabling anyone to interact with the broker or manage messages and destinations without any form of authentication.
This vulnerability can be mitigated by updating the conf/jetty.xml
configuration file to include authentication requirements as described in the official mitigation guide:
<bean id="securityConstraintMapping" class="org.eclipse.jetty.security.ConstraintMapping">
 <property name="constraint" ref="securityConstraint" />
 <property name="pathSpec" value="/" />
</bean>