- jni such as dereferencing pointers to wron memory areas (like Nullpointer) or illegal Opcodes
- corrupted libraries via hex editing
- buggy drivers
- failed syscalls relating to hardware issue
- bugs in the jvm (check the bug report)
- missing os patch
- using reflection to crash the vm
- using the below class (by ralfs)
public class Crash {
public static void main(String[] args) {
Object[] o = null;
while (true) {
o = new Object[] {o};
}
}
}
http://stackoverflow.com/questions/65200/how-do-you-crash-a-jvm
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_17534
No comments:
Post a Comment