nuclei-templates/miscellaneous/trace-method.yaml

32 lines
576 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
2021-08-11 08:01:11 +00:00
tags: misc,generic
2021-04-01 18:35:08 +00:00
reference: https://www.blackhillsinfosec.com/three-minutes-with-the-http-trace-method/
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"