nuclei-templates/fuzzing/prestashop-module-fuzz.yaml

43 lines
861 B
YAML
Raw Normal View History

2021-07-26 17:10:23 +00:00
id: prestashop-module-fuzz
2021-10-10 01:13:30 +00:00
2021-07-26 17:10:23 +00:00
info:
2021-08-04 16:28:54 +00:00
name: Prestashop Modules Enumeration
2021-07-26 17:10:23 +00:00
author: meme-lord
severity: info
tags: fuzz,prestashop
requests:
- raw:
2021-07-26 17:10:23 +00:00
- |
GET /modules/{{path}}/config.xml HTTP/1.1
Host: {{Hostname}}
Accept: application/json, text/plain, */*
Accept-Language: en-US,en;q=0.5
Referer: {{BaseURL}}
payloads:
path: helpers/wordlists/prestashop-modules.txt
2021-10-10 01:13:30 +00:00
threads: 50
2021-07-26 17:10:23 +00:00
matchers-condition: and
matchers:
- type: word
2021-10-10 01:13:30 +00:00
condition: and
2021-07-26 17:10:23 +00:00
words:
- "<module>"
2021-08-04 16:25:59 +00:00
- "<name>"
- "<displayName>"
2021-08-04 16:28:54 +00:00
- "<is_configurable>"
2021-08-04 16:25:59 +00:00
- "</module>"
- type: status
status:
- 200
2021-07-26 17:10:23 +00:00
extractors:
- type: regex
part: body
group: 2
regex:
- '<version>(<!\[CDATA\[)?([0-9.]+)'