44 lines
1.6 KiB
YAML
Executable File
44 lines
1.6 KiB
YAML
Executable File
id: CVE-2017-12149
|
|
|
|
info:
|
|
name: Java/Jboss Deserialization [RCE]
|
|
author: fopina
|
|
severity: critical
|
|
description: In Jboss Application Server as shipped with Red Hat Enterprise Application Platform 5.2, it was found that the doFilter method in the ReadOnlyAccessFilter of the HTTP Invoker does not restrict classes for which it performs deserialization and thus allowing an attacker to execute arbitrary code via crafted serialized data.
|
|
reference:
|
|
- https://nvd.nist.gov/vuln/detail/CVE-2017-12149
|
|
- https://chowdera.com/2020/12/20201229190934023w.html
|
|
- https://github.com/vulhub/vulhub/tree/master/jboss/CVE-2017-12149
|
|
tags: cve,cve2017,jboss,java,rce,deserialization
|
|
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.80
|
|
cve-id: CVE-2017-12149
|
|
cwe-id: CWE-502
|
|
|
|
requests:
|
|
- raw:
|
|
- |
|
|
POST /invoker/JMXInvokerServlet/ HTTP/1.1
|
|
Host: {{Hostname}}
|
|
Content-Type: application/octet-stream
|
|
|
|
{{ base64_decode("rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAACdwQAAAACdAAJZWxlbWVudCAxdAAJZWxlbWVudCAyeA==") }}
|
|
- |
|
|
POST /invoker/EJBInvokerServlet/ HTTP/1.1
|
|
Host: {{Hostname}}
|
|
Content-Type: application/octet-stream
|
|
|
|
{{ base64_decode("rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAACdwQAAAACdAAJZWxlbWVudCAxdAAJZWxlbWVudCAyeA==") }}
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "ClassCastException"
|
|
part: body
|
|
|
|
- type: word
|
|
words:
|
|
- "application/x-java-serialized-object"
|
|
part: header |