mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
id: wp-links-opml
|
|
|
|
info:
|
|
name: WordPress wp-links-opml.php - Version Disclosure
|
|
author: princechaddha
|
|
severity: info
|
|
description: |
|
|
WordPress wp-links-opml.php file was publicly accessible and expossed the WordPress version in the generator tag.
|
|
reference:
|
|
- https://www.acunetix.com/vulnerabilities/web/wordpress-version-disclosed/
|
|
- https://wordpress.org/
|
|
classification:
|
|
cpe: cpe:2.3:a:wordpress:wordpress:*:*:*:*:*:*:*:*
|
|
metadata:
|
|
verified: true
|
|
max-request: 1
|
|
vendor: wordpress
|
|
product: wordpress
|
|
shodan-query:
|
|
- http.component:"wordpress"
|
|
- cpe:"cpe:2.3:a:wordpress:wordpress"
|
|
tags: exposure,wordpress,wp,version,files
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/wp-links-opml.php"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "generator="
|
|
- "WordPress/"
|
|
condition: and
|
|
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- "text/xml"
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
extractors:
|
|
- type: regex
|
|
name: version
|
|
group: 1
|
|
regex:
|
|
- '(?i)generator="?WordPress/([0-9.]+)"?'
|