mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-23 21:45:27 +00:00
18 lines
387 B
YAML
18 lines
387 B
YAML
|
|
id: redirect-match-url
|
||
|
|
|
||
|
|
info:
|
||
|
|
name: Redirect Match URL
|
||
|
|
author: pdteam
|
||
|
|
severity: info
|
||
|
|
|
||
|
|
requests:
|
||
|
|
- method: GET
|
||
|
|
path:
|
||
|
|
- "{{BaseURL}}"
|
||
|
|
stop-at-first-match: true # Confirm stop-at-first-match
|
||
|
|
redirects: true # Confirm redirected URL matched value
|
||
|
|
max-redirects: 3
|
||
|
|
matchers:
|
||
|
|
- type: word
|
||
|
|
words:
|
||
|
|
- "This is test redirects matcher text"
|