mirror of https://github.com/OWASP/Nettacker.git
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
info:
|
|
name: wp_xmlrpc_dos_vuln
|
|
author: OWASP Nettacker Team
|
|
severity: 3
|
|
description:
|
|
reference:
|
|
profiles:
|
|
- vuln
|
|
- http
|
|
- wordpress
|
|
|
|
payloads:
|
|
- library: http
|
|
steps:
|
|
- method: post
|
|
timeout: 3
|
|
headers:
|
|
User-Agent: "{user_agent}"
|
|
Content-Type: "text/xml"
|
|
allow_redirects: false
|
|
ssl: false
|
|
url:
|
|
nettacker_fuzzer:
|
|
input_format: "{{schema}}://{target}:{{ports}}/xmlrpc.php"
|
|
prefix: ""
|
|
suffix: ""
|
|
interceptors:
|
|
data:
|
|
schema:
|
|
- "http"
|
|
- "https"
|
|
ports:
|
|
- 80
|
|
- 443
|
|
data: <?xml version=\"1.0\" encoding=\"utf-8\"?><methodCall><methodName>system.listMethods</methodName><params></params></methodCall>
|
|
response:
|
|
condition_type: or
|
|
conditions:
|
|
content:
|
|
regex: system.multicall&system.listMethods&demo.sayHello
|
|
reverse: false
|
|
status_code:
|
|
regex: "200"
|
|
reverse: false
|