nuclei-templates/miscellaneous/trace-method.yaml

33 lines
582 B
YAML
Raw Normal View History

2020-12-01 14:45:15 +00:00
id: HTTP-TRACE
info:
name: HTTP TRACE method enabled
author: nodauf
severity: info
reference:
- https://www.blackhillsinfosec.com/three-minutes-with-the-http-trace-method/
2021-08-11 08:01:11 +00:00
tags: misc,generic
2020-12-01 14:45:15 +00:00
requests:
- method: TRACE
path:
2021-01-13 07:31:46 +00:00
- "{{BaseURL}}"
2020-12-01 14:45:15 +00:00
matchers:
- type: word
name: trace-request
2022-01-28 10:24:49 +00:00
part: body
2020-12-01 14:45:15 +00:00
words:
- "TRACE / HTTP"
- method: OPTIONS
path:
2021-01-13 07:31:46 +00:00
- "{{BaseURL}}"
2020-12-01 14:45:15 +00:00
matchers:
- type: regex
name: options-request
2022-01-28 10:24:49 +00:00
part: header
2020-12-01 14:45:15 +00:00
regex:
- "(?i)Allow: [A-Z,]*TRACE"