40 lines
681 B
YAML
40 lines
681 B
YAML
id: wordpress-rdf-user-enum
|
|
|
|
info:
|
|
name: Wordpress RDF User Enumeration
|
|
author: r3dg33k
|
|
severity: info
|
|
tags: wordpress,enum
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- '{{BaseURL}}/feed/rdf'
|
|
host-redirects: true
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- "application/rdf+xml"
|
|
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "<rdf:RDF"
|
|
- "<dc:creator>"
|
|
condition: and
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: body
|
|
group: 1
|
|
regex:
|
|
- '<dc\:creator><\!\[CDATA\[(.*?)\]\]></dc'
|