Skip to content

Instantly share code, notes, and snippets.

@usmansaleem
Last active September 29, 2020 08:55
Show Gist options
  • Save usmansaleem/eec7ddbf69d6fef6ce61714351c03c84 to your computer and use it in GitHub Desktop.
Save usmansaleem/eec7ddbf69d6fef6ce61714351c03c84 to your computer and use it in GitHub Desktop.
Forceful crash of JVM
static void crash() {
try {
final Field f = Unsafe.class.getDeclaredField("theUnsafe");
f.setAccessible(true);
final Unsafe unsafe = (Unsafe) f.get(null);
unsafe.putAddress(0, 0);
} catch (final NoSuchFieldException | IllegalAccessException e) {
throw new RuntimeException(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment