nuclei-templates/cves/2017/CVE-2017-7269.yaml

45 lines
1.5 KiB
YAML
Raw Normal View History

2021-02-24 18:11:44 +00:00
id: CVE-2017-7269
2021-02-24 13:29:23 +00:00
info:
name: Windows Server 2003 & IIS 6.0 - Remote Code Execution
2021-06-09 12:20:56 +00:00
author: thomas_from_offensity,geeknik
2021-02-24 13:29:23 +00:00
severity: critical
description: |
Internet Information Services (IIS) 6.0 in Microsoft Windows Server 2003 R2 contains a buffer overflow vulnerability in the ScStoragePathFromUrl function in the WebDAV service that could allow remote attackers to execute arbitrary code via a long header beginning with "If <http://" in a PROPFIND request.
2021-05-09 15:43:32 +00:00
reference:
2021-05-09 15:16:07 +00:00
- https://blog.0patch.com/2017/03/0patching-immortal-cve-2017-7269.html
- https://github.com/danigargu/explodingcan/blob/master/explodingcan.py
- https://nvd.nist.gov/vuln/detail/CVE-2017-7269
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
cvss-score: 9.8
cve-id: CVE-2017-7269
cwe-id: CWE-119
tags: cve,cve2017,rce,windows,iis
2021-02-24 13:29:23 +00:00
requests:
- method: OPTIONS
path:
- "{{BaseURL}}"
2021-05-09 17:20:07 +00:00
2021-02-24 13:29:23 +00:00
matchers-condition: and
matchers:
- type: word
part: header
2021-02-24 13:29:23 +00:00
words:
- "IIS/6.0"
2021-05-09 17:20:07 +00:00
2021-02-24 13:29:23 +00:00
- type: dsl
part: header
2021-02-24 13:29:23 +00:00
dsl:
- regex("<DAV:sql>", dasl) # lowercase header name: DASL
- regex("[\d]+(,\s+[\d]+)?", dav) # lowercase header name: DAV
- regex(".*?PROPFIND", public) # lowercase header name: Public
- regex(".*?PROPFIND", allow) # lowercase header name: Allow
condition: or
- type: status
status:
- 200
# Enhanced by mp on 2022/05/11