@echo off
title Cyber Security Lab - Training
color 0A

:: Fake training/hacking sequence
echo Initializing Cyber Security Lab Formation...
timeout /t 2 >nul
echo Connecting to secure servers...
timeout /t 2 >nul
echo Downloading training modules...
timeout /t 2 >nul
echo Processing data packets...
timeout /t 2 >nul
echo Verifying integrity...
timeout /t 2 >nul

:: Change color for alerts
color 0C
echo WARNING: System anomaly detected!
timeout /t 2 >nul
echo WARNING: Possible intrusion detected!
timeout /t 2 >nul
echo ALERT: You are hacked!
timeout /t 2 >nul
echo System override initiated...
timeout /t 2 >nul
echo Machine compromised...
timeout /t 2 >nul

:: Popup message
msg * WARNING! Your system is compromised! Shutting down...

:: Change color to bright red for dramatic ending
color 4F
echo -------------------------------------------
echo    SYSTEM FAILURE - CYBER SECURITY BREACH
echo -------------------------------------------
timeout /t 3 >nul

:: Final shutdown command
shutdown /s /t 10 /c "System compromised. Shutting down..."
