nuclei-templates/vulnerabilities/wordpress/wordpress-rdf-user-enum.yaml

40 lines
706 B
YAML
Raw Normal View History

2021-10-30 10:46:56 +00:00
id: Wordpress-RDF-User-Enum
info:
name: Wordpress-RDF-User-Enumeration
author: r3dg33k
severity: info
2021-10-30 10:58:24 +00:00
reference: N/A
2021-10-30 10:46:56 +00:00
tags: wordpress
2021-10-30 10:57:53 +00:00
2021-10-30 10:46:56 +00:00
requests:
- method: GET
path:
- '{{BaseURL}}/feed/rdf'
redirects: true
matchers-condition: and
matchers:
2021-10-30 10:57:53 +00:00
2021-11-01 10:00:54 +00:00
- type: word
part: header
words:
- "application/rdf+xml"
- type: word
part: body
words:
- "<rdf:RDF"
- "<dc:creator>"
condition: and
2021-10-30 10:46:56 +00:00
- type: status
status:
- 200
2021-10-30 10:57:53 +00:00
2021-10-30 10:46:56 +00:00
extractors:
- type: regex
part: body
2021-11-01 10:00:54 +00:00
group: 1
2021-10-30 10:46:56 +00:00
regex:
2021-11-01 10:00:54 +00:00
- '<dc:creator><!\[CDATA\[([a-z]+)\]\]><\/dc:creator>'