Skip to content

Commit

Permalink
Merge pull request #8323 from FLX-0x00/wordpress-yoast-seo-user-enume…
Browse files Browse the repository at this point in the history
…ration

implement wordpress-yoast-seo-user-enumeration
  • Loading branch information
DhiyaneshGeek authored Oct 9, 2023
2 parents 02f924e + a8c85fc commit c44cac4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions http/vulnerabilities/wordpress/wp-yoast-user-enumeration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
id: wp-yoast-user-enumeration

info:
name: WordPress Yoast SEO Plugin - User Enumeration
author: FLX
severity: info
reference:
- https://developer.yoast.com/features/xml-sitemaps/functional-specification/
metadata:
max-request: 1
verified: true
google-dork: inurl:"/author-sitemap.xml"
tags: wp,wp-plugin,wordpress,username,disclosure

http:
- raw:
- |
@timeout: 15s
GET /author-sitemap.xml HTTP/1.1
Host: {{Hostname}}
matchers-condition: and
matchers:
- type: word
part: body
words:
- "<?xml"
- "<lastmod>"
- "<loc>"
condition: and

- type: word
part: header
words:
- "application/xml"
- "text/xml"

- type: status
status:
- 200

0 comments on commit c44cac4

Please sign in to comment.