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