40 lines
945 B
YAML
40 lines
945 B
YAML
id: wordpress-plugins-detect
|
|
|
|
info:
|
|
name: WordPress Plugins Detection
|
|
author: 0xcrypto
|
|
severity: info
|
|
metadata:
|
|
max-request: 98135
|
|
tags: fuzz,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: 490a0046304402203dae0e85f594434c208f2bbb49a34444932fb2bbebfc79dd5927f3a559fc28840220779c3169c962d96c2f3e567212f7919cfc7df199c2b58bc160c12eb2ab74cc7e:922c64590222798bb761d5b6d8e72950
|