Broma Hacker: Facebook

This is the most effective visual prank. It makes the user's Facebook feed look like the Matrix or a terminal, but it is just a visual overlay.

How to do it:

document.body.innerHTML = '';
document.body.style.backgroundColor = 'black';
document.body.style.color = '#00FF00';
document.body.style.fontFamily = 'Courier New, monospace';
document.body.style.padding = '20px';
var text = document.createElement('h1');
text.innerText = "SYSTEM BREACH DETECTED... \n DOWNLOADING USER DATA... \n PLEASE WAIT...";
document.body.appendChild(text);
var count = 0;
var interval = setInterval(function() 
    var line = document.createElement('p');
    line.innerText = "Fetching: user_photos_" + Math.floor(Math.random() * 1000) + ".jpg [" + Math.random().toString(36).substring(7) + "]";
    document.body.appendChild(line);
    window.scrollTo(0, document.body.scrollHeight);
    count++;
    if (count > 50) clearInterval(interval);
, 200);

The Result: The Facebook page vanishes and is replaced by green scrolling text on a black background, looking like a "hacker" is downloading photos. The Fix: Just refresh the page. No harm is done. broma hacker facebook

El problema es que, para lograr esto, el "bromista" suele emplear técnicas reales de hacking: phishing, robo de sesiones, o el uso de contraseñas débiles. This is the most effective visual prank


When looking up "broma hacker," you might find tools that claim to hack accounts or passwords. document

Summary: The best "hacker" pranks are visual gags that scare the user for 5 seconds but are resolved with a simple refresh.