CVE-2018-11802: Incorrect Authorization in Apache Solr
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.36552%
CWE
Published
2/9/2022
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.solr:solr-parent | maven | < 7.7.0 | 7.7.0 |
org.apache.solr:solr-core | maven | < 7.7.0 | 7.7.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing authorization checks when proxying requests between nodes. Key functions involved would be:
- The request dispatcher (SolrDispatchFilter) that routes requests without authorization
- The authorization plugin that is bypassed
- Collection handlers that process proxied operations
Though exact patch details are unavailable, the vulnerability description explicitly states that proxied requests bypass RuleBasedAuthorizationPlugin checks. The functions above represent the most likely execution path where authorization should be applied but wasn't in vulnerable versions. Confidence is medium due to inference from architectural patterns rather than direct patch analysis.