mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-04 01:33:21 +08:00
* info field reorder * reference values refactored to list * added new lines after the id and before the protocols * removed extra new lines * split really long descriptions to multiple lines (part 1) * other minor fixes
27 lines
616 B
YAML
27 lines
616 B
YAML
id: wordpress-xmlrpc-listmethods
|
|
|
|
info:
|
|
name: Wordpress XML-RPC List System Methods
|
|
author: 0ut0fb4nd
|
|
severity: info
|
|
tags: wordpress
|
|
|
|
requests:
|
|
- method: POST
|
|
path:
|
|
- "{{BaseURL}}/xmlrpc.php"
|
|
|
|
body: "<?xml version=\"1.0\" encoding=\"utf-8\"?><methodCall><methodName>system.listMethods</methodName><params></params></methodCall>"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
- type: word
|
|
words:
|
|
- "system.multicall"
|
|
- "system.listMethods"
|
|
- "demo.sayHello"
|
|
condition: and
|
|
part: body |