38 lines
961 B
YAML
38 lines
961 B
YAML
id: wordpress-plugins-detect
|
|
|
|
info:
|
|
name: WordPress Plugins Detection
|
|
author: 0xcrypto
|
|
severity: info
|
|
metadata:
|
|
max-request: 98135
|
|
tags: fuzzing,bruteforce,wordpress
|
|
|
|
http:
|
|
- raw:
|
|
- |
|
|
GET /wp-content/plugins/{{pluginSlug}}/readme.txt HTTP/1.1
|
|
Host: {{Hostname}}
|
|
|
|
threads: 50
|
|
payloads:
|
|
pluginSlug: helpers/wordlists/wordpress-plugins.txt
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
- type: word
|
|
words:
|
|
- "== Description =="
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: body
|
|
group: 1
|
|
regex:
|
|
- "===\\s(.*)\\s===" # extract the plugin name
|
|
- "(?m)Stable tag: ([0-9.]+)" # extract the plugin version
|
|
# digest: 4b0a00483046022100bc606e0746f263229a02d000cd84aafb581fcdf5d93f151e4de17e328f47291b022100a600a40ce1fbd7cab94ccc994cd355edf9dc15ed337d21d28b414705b5324161:922c64590222798bb761d5b6d8e72950 |