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

40 lines
676 B
YAML
Raw Normal View History

2021-11-04 10:13:49 +00:00
id: wordpress-rdf-user-enum
2021-10-30 10:46:56 +00:00
info:
name: Wordpress RDF User Enumeration
2021-10-30 10:46:56 +00:00
author: r3dg33k
severity: info
2021-11-04 10:13:49 +00:00
tags: wordpress,enum
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-11-01 10:03:06 +00:00
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-04 10:13:49 +00:00
- '<dc\:creator><\!\[CDATA\[(.*?)\]\]></dc'