mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-07 11:13:20 +08:00
20 lines
312 B
YAML
20 lines
312 B
YAML
id: detect-options-method
|
|
|
|
info:
|
|
name: Detect enabled OPTIONS methods
|
|
author: pdteam
|
|
severity: info
|
|
tags: misc,generic
|
|
|
|
requests:
|
|
- method: OPTIONS
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: header
|
|
group: 1
|
|
regex:
|
|
- "Allow: ([A-Z, ]+)"
|