This article focuses on pranks, but a note of caution: Real ransomware exists. If you or a friend encounter a genuine lock screen that won't go away after restarting the device, do not pay the ransom.
Genuine removal steps:
The difference: A real virus will persist after restart. A prank dies when you close the browser.
❌ Can cause significant distress if the victim doesn’t know it’s a prank.
❌ Overuse may desensitize people to real security warnings.
❌ Some antivirus tools flag fake FBI screens as Potentially Unwanted Programs (PUPs).
❌ A few malicious actors embed real ransomware or scareware inside fake warning pages – only use trusted sources.
For pranksters with basic coding skills, create an HTML file with: Fake FBI Lock Warining Screen Prank
This method allows you to "release" the victim remotely or after they have sufficiently panicked.
Introduction: The Digital Jump Scare That Never Gets Old
You hand your phone to a friend to show them a harmless video. They tap the screen. Suddenly, the device vibrates violently. A blaring siren cuts through the room. Their blood runs cold as a terrifying red, white, and blue graphic freezes the display. The header reads: "YOUR DEVICE HAS BEEN LOCKED." Subtext: "Your IP address has been tracked visiting restricted websites. Fine: $2,500. Pay now to unlock."
For three full seconds, your friend genuinely believes the Federal Bureau of Investigation has personally seized their smartphone. Then you start laughing. This article focuses on pranks, but a note
This is the Fake FBI Lock Warning Screen Prank—a modern, high-stakes version of the classic jump scare. It leverages our deepest digital fears: surveillance, fines, and public humiliation.
But is this prank clever fun or a legal landmine? In this article, we will dissect everything you need to know: how the prank works, step-by-step instructions to create or install the screen, the psychological impact on the victim, the very real legal consequences of going too far, and the best “scary but safe” alternatives.
The line between hilarious and harmful is thin.
Copy the following code into a text editor (like Notepad) and save it as prank.html. Open the file in a web browser. The difference: A real virus will persist after restart
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>FBI - Cyber Department</title> <style> body margin: 0; padding: 0; background-color: #f0f0f0; font-family: 'Times New Roman', serif; /* Official looking font */ overflow: hidden; /* Hides scrollbars */ user-select: none; /* Prevents highlighting text *//* The Overlay Background */ #lock-screen position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; /* The FBI Logo Header */ .header display: flex; align-items: center; margin-bottom: 20px; border-bottom: 2px solid #000; padding-bottom: 20px; width: 80%; justify-content: center; .seal width: 80px; height: 80px; background: gold; border-radius: 50%; border: 4px double #000; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 12px; text-align: center; margin-right: 20px; .title-text h1 margin: 0; font-size: 32px; color: #000; letter-spacing: 2px; .title-text p margin: 0; font-size: 14px; color: #333; font-weight: bold; /* The Warning Box */ .warning-box width: 70%; border: 3px solid red; padding: 20px; text-align: center; background-color: #fff; .warning-box h2 color: red; margin-top: 0; font-variant: small-caps; font-size: 24px; .warning-box p font-size: 14px; line-height: 1.5; .fine-print margin-top: 20px; font-size: 12px; color: #555; /* The "Payment" Area (Just visual) */ .payment-info margin-top: 20px; padding: 10px; background-color: #e0e0e0; border: 1px solid #ccc; width: 50%; /* Hidden Exit Button for the Prankster */ .exit-btn position: absolute; bottom: 10px; right: 10px; background: transparent; border: none; color: white; font-size: 10px; cursor: pointer; opacity: 0.1; .exit-btn:hover opacity: 1; color: black; </style></head> <body>
<div id="lock-screen"> <div class="header"> <div class="seal">DEPT<br>OF<br>JUSTICE</div> <div class="title-text"> <h1>FEDERAL BUREAU OF INVESTIGATION</h1> <p>U.S. Department of Justice - Cyber Division</p> </div> </div> <div class="warning-box"> <h2>ATTENTION!</h2> <p>Your device has been locked due to suspicious activity.</p> <p>You have been viewing prohibited content.</p> <p><strong>ICPA-987654-USA</strong></p> <div class="payment-info"> <p>To unlock your device and avoid prosecution, you must pay a fine of <strong>$500.00</strong> via iTunes Gift Cards within 48 hours.</p> <p style="color: red; font-weight: bold;">DO NOT RESTART YOUR DEVICE.</p> </div> <div class="fine-print"> Article 161.20 of the U.S. Criminal Code implies a deprivation of liberty for 5 to 8 years. </div> </div> <!-- Hidden button to close the prank easily --> <button class="exit-btn" onclick="document.body.innerHTML = '<h1>PRANK SUCCESSFUL!</h1>'">Click to Exit</button> </div>
</body> </html>