Paso 2: Escriba el código de
A continuación, escriba el código:
Parte 1: Te da un mensaje falso que su equipo está infectado.
off title Alert cls color 0C echo Critical : echo A potentially harmful threat hes been detected on your computer. echo Alert level : Severe echo Item : file:%WINDIR%\System32\%USERNAME%'s virus.exe" echo Category : Worm echo Description : This program is dangerous and self-propagates over a network connection.echo Recommended action : Remove this item immediately. pause
Parte 2: Le pide que tome una acción.
echo Select an action: echo 1:Remove it. echo 2:Ignore it. echo 3:Run the program now. set /p input= if c%input%==c1 goto c1 if c%input%==c2 goto c2 if c%input%==c3 goto c3 echo Invalid choice. echo System will remove the program automatically. goto c1
Parte 3: Toma la acción que usted elija.
:c1 echo Removing file . . . ping /n 8 127.0.0.1 >nul REM This stops the program for a few seconds echo Error 5 : Access is denied. echo Reason : The virus program is now running. ping /n 4 127.0.0.1 >nul goto Infect :c2 echo The virus program is now running,so you can't ignore it. ping /n 4 127.0.0.1 >nul goto Infect :c3 ping /n 8 127.0.0.1 >nul goto Infect
Ir al siguiente paso para ver la parte más importante...