Skip to content

Instantly share code, notes, and snippets.

@digRabbit
Last active February 9, 2025 00:10
Show Gist options
  • Save digRabbit/782dcff676887f09d3b9044c0047a0a6 to your computer and use it in GitHub Desktop.
Save digRabbit/782dcff676887f09d3b9044c0047a0a6 to your computer and use it in GitHub Desktop.
testing xss
// Create a full-screen black box
var blackBox = document.createElement('div');
blackBox.style.position = 'fixed';
blackBox.style.top = '0';
blackBox.style.left = '0';
blackBox.style.width = '100%';
blackBox.style.height = '100%';
blackBox.style.backgroundColor = 'black';
blackBox.style.zIndex = '9999'; // Ensure it stays on top of everything
// Add the black box to the body
document.body.appendChild(blackBox);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment