Skip to content

Instantly share code, notes, and snippets.

@naxty
Last active November 6, 2022 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naxty/5c7b02737743ae946c455bcfd12ce8a5 to your computer and use it in GitHub Desktop.
Save naxty/5c7b02737743ae946c455bcfd12ce8a5 to your computer and use it in GitHub Desktop.
xss-alert.js
<script>
const message = function() {
console.log("This message is shown after 3 seconds");
alert(1);
}
setTimeout(message, 3000);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment