Please verify you are human
Operating System: Windows 98 (Web Edition)
Computer Name: USER-PC
Processor: Intel Pentium II 450 MHz
Memory: 128 MB RAM
System Type: 32-bit Operating System
This folder contains your personal documents, images, and files.
Total: 5 items
Browse network computers and shared resources.
Note: This is a simulated Windows 98 environment running in your web browser.
The Recycle Bin is empty.
Deleted items will be stored here until you empty the Recycle Bin.
⚠️ Important: Always backup before making security changes. Test in non-production first.
Priority: CRITICAL
sudo apt update && sudo apt upgrade -y
sudo apt dist-upgrade -y
sudo rpi-update
Priority: CRITICAL
Default password "raspberry" is well-known. Change immediately:
passwd
Priority: HIGH
# On your local computer:
ssh-keygen -t ed25519 -C "your_email@example.com"
ssh-copy-id -i ~/.ssh/id_ed25519.pub user@raspberrypi
Priority: HIGH
Edit /etc/ssh/sshd_config:
Port 2222
PermitRootLogin no
PasswordAuthentication no
PubkeyAuthentication yes
MaxAuthTries 3
sudo systemctl restart ssh
Priority: HIGH
sudo apt install ufw -y
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw allow 2222/tcp
sudo ufw enable
Priority: MEDIUM
Auto-ban IPs with failed login attempts:
sudo apt install fail2ban -y
sudo systemctl enable fail2ban
sudo systemctl start fail2ban
Priority: MEDIUM
sudo apt install unattended-upgrades -y
sudo dpkg-reconfigure -plow unattended-upgrades
Priority: MEDIUM
sudo systemctl disable bluetooth
sudo systemctl disable avahi-daemon
Priority: LOW
sudo tail -f /var/log/auth.log
sudo lastb
💡 Pro Tip: Run security updates weekly and review logs regularly for suspicious activity.