The prank site may have stored a session cookie to redirect you back to the loop. Clear your browser cache and cookies for the last hour.
Why did the "You Are An Idiot" virus work so well? The answer lies in social engineering, not code.
This is a classic "prank" script from the early internet days. It uses
(a Windows-native language) to create a series of pop-up boxes. To try this safely: Paste the code below. Save the file as (make sure it ends in , not .txt). Double-click it to run.
X=MsgBox("Warning: A virus has been detected on your system. Do you want to delete it?", 4+16, "System Critical")
X=MsgBox("Unable to delete. The virus is too powerful.", 0+48, "System Error")
X=MsgBox("Virus has gained access to your files. Deleting Documents...", 0+16, "Infection Progress")
X=MsgBox("Just kidding! You are an idiot! :)", 0+64, "Pranked") Use code with caution. Copied to clipboard How it works: : This creates a "Yes/No" dialog with a "Critical" icon.
: This creates a simple "OK" button with an "Information" icon.
: It’s all just display text—it doesn't actually touch your files.
If you want to make it "un-closable" for a few seconds, you can wrap the last line in a (though you'll have to end the process in Task Manager to stop it!). or plays a sound as part of the prank?