mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 04:45:27 +00:00
* Added redirected matched URL + stop-at-first-match for redirect chains * Pleasing go-linter
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" |