nuclei-templates/misconfiguration/xss-deprecated-header.yaml

43 lines
1.0 KiB
YAML

id: xss-deprecated-header-detect
info:
name: XSS-Protection Header - Cross-Site Scripting
author: joshlarsen
severity: high
description: XSS-Protection header in Explorer, Chrome, and Safari contains a cross-site scripting vulnerability if set to any value other than `0`.
reference:
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
- https://owasp.org/www-project-secure-headers/#x-xss-protection
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
cvss-score: 7.2
cwe-id: CWE-79
tags: xss,misconfig,generic
requests:
- method: GET
path:
- "{{BaseURL}}"
matchers-condition: and
matchers:
- type: regex
part: header
regex:
- "(?i)x-xss-protection: 0"
negative: true
- type: regex
part: header
regex:
- "(?i)x-xss-protection: 1+"
extractors:
- type: kval
part: header
kval:
- x_xss_protection
# Enhanced by mp on 2022/09/15