Created
February 27, 2026 07:31
-
-
Save thomasht86/780925568d9c312362041ef04747edb0 to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| # Fake "hacker" screen — totally harmless | |
| echo "INITIATING SYSTEM OVERRIDE..." | |
| for i in $(seq 1 20); do | |
| echo "[$(date +%T)] Accessing sector $((RANDOM % 9999))... OK" | |
| sleep 0.2 | |
| done | |
| echo "" | |
| echo "████████████████████████████" | |
| echo "██ YOU HAVE BEEN PWNED! ██" | |
| echo "████████████████████████████" | |
| echo "" | |
| echo "(jk, your system is fine 😄)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment