Skip to content

Instantly share code, notes, and snippets.

@StefCoders
Created June 1, 2025 17:32
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