CVE-2010-1244: Cross-site request forgery in Apache ActiveMQ
6.8
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.6216%
CWE
Published
5/2/2022
Updated
12/21/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
AV:N/AC:M/Au:N/C:P/I:P/A:P
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.activemq:activemq-parent | maven | < 5.3.1 | 5.3.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from two key issues: 1) The CreateDestination
controller accepted GET requests for queue creation via createDestination.action
without CSRF protections. This is evident from the patch adding getSupportedHttpMethods()
to restrict to POST and JSP forms being changed from GET to POST. 2) The request handler mapping didn't validate
CSRF tokens or enforce HTTP method restrictions before the patch, as shown by the addition of secret parameter checks and method validation in the commit. These missing protections allowed forged requests to execute queue creation actions using victim sessions.