源码:
QUOTE:
@Echo Off
title 流行病毒文件搜索删除工具
color cf
MODE con: COLS=70 lines=22
:start1
cls
Echo == == == == == == == == == == == == == == == == == == == ==
Echo 欢迎使用流行病毒专杀工具 程序制作:长江龙
Echo == == == == == == == == == == == == == == == == == == == ==
Echo %DATE%
Echo ===========================================
Echo 请选择要进行的操作,然后按回车
Echo ===========================================
Echo.
Echo 1.映像劫持注册表恢复
Echo.
Echo 2.查找与删除启动文件autorun.inf
Echo.
Echo 3.teoyfgx.exe debug.exe等(类似AV终结者关闭杀软病毒)的专杀工具
Echo.
Echo 4.退 出
Echo.
:cho
Set choice=
Set /p choice= 请选择:
If Not "%Choice%"=="" Set Choice=%Choice:~0,1%
If /i "%choice%"=="1" Goto start
If /i "%choice%"=="2" Goto :ks
If /i "%choice%"=="3" Goto :tyg
If /i "%choice%"=="4" Goto eod
Echo 选择无效,请重新输入
Echo.
Goto cho
:start
cls
@Echo Off
title 恢复注册映象 安全验证修改版 %DATE%
color 3f
Echo.
Echo.
Echo 本脚本安全测试通过
Echo.
Echo.
pause
Echo.
Echo 正在删除以前的映象...&Echo.
regedit /s "delete.reg"
Echo 正在重建映象...&Echo.
regedit /s "add.reg"
regedit /s "Ifeo.reg"
Echo 映象重建完成
Goto start1
:ks
cls
@Echo Off
title 删除启动文件 %DATE%
:: +-------------------------------------------------------------------------------+
:: + 删 除 启 动 文 件 +
:: + +
:: + +
:: + +
:: +---------------------------^^^------^^^----------------------------------------+
:: | @ @ |
:: | @@ |
:: ------
Echo --------------------查找与删除启动文件autorun.inf等------------------------
Echo.
::decide the ways /path
setlocal enabledelayedexpansion
:ifc
If Exist c: Goto sc
:ifd
If Exist d: Goto sd
:ife
If Exist e: Goto se
:iff
If Exist f: Goto sf
:ifg
If Exist g: Goto sg
:ifh
If Exist h: Goto sh
:ifi
If Exist i: Goto si
:ifk
If Exist j: Goto sj
:ifk
If Exist k: Goto sk
Goto End
::find the files
:sc
Cd\
c:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto ifd
:sd
Cd\
d:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto ife
:se
Cd\
e:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto iff
:sf
Cd\
f:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto ifg
:sg
Cd\
g:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto ifh
:sh
Cd\
h:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto ifi
:si
Cd\
i:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto ifj
:sj
Cd\
j:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto ifk
:sk
Cd\
k:
attrib -s -h -r autorun.inf
Echo y|rmdir autorun...\\
If Exist autorun.inf For /f "usebackq skip=2 tokens=1,2 delims==" %%i In (autorun.inf) Do ( Set openexe=%%j
attrib -h -s -r !openexe!
Del !openexe! /f /q /s)
Del autorun.inf /f /q /s
Goto End
:End
::Del And add the reg files
REG DELETEHKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL\/v CheckedValue /f
REG ADDHKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL\/v CheckedValue /t REG_DWORD /d 0x00000001 /f
Echo.
Echo ----------------------------操 作 完 成!------------------------------
Echo.
Echo.
Goto start1
:tyg
cls
title teoyfgx.exe debug.exe等专杀工具 %date%
taskkill /f /t /im iflvsnh.exe
taskkill /f /t /im pkyykil.exe
taskkill /f /t /im debug.exe
For /l %%i In (1,1,5) Do Echo.
Echo teoyfgx.exe debug.exe等(类似AV终结者关闭杀软病毒)的专杀工具
Echo.
Echo 请耐心等待直至出现 清除完毕!
ping /n 3 127.1>nul
::清除注册表启动
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v lknjkaw /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v teoyfgx /f
reg delete "HKEY_USERS\S-1-5-21-823518204-152049171-839522115-500\Software\Microsoft\Search Assistant\ACMru\5603 " /f
reg delete "HKEY_USERS\S-1-5-21-823518204-152049171-839522115-500\Software\Microsoft\Windows\ShellNoRoam\MUICache" /f
::清除注册表禁止启动应用程序
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\360rpt.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\360Safe.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\360tray.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\adam.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\AgentSvr.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\AppSvc32.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\avconsol.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ArSwp.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\autoruns.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\avgrssvc.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\AvMonitor.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\avp.com" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\avp.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\CCenter.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\ccSvcHst.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\EGHOST.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\FileDsty.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Image File Execution Options\FTCleanerShell.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\FYFireWall.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\HijackThis.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\IceSword.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\iparmo.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Iparmor.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\isPwdSvc.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\kabaload.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KaScrScn.SCR" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KASMain.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KASTask.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KAV32.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KAVDX.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KAVPF.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KAVPFW.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KAVSetup.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KAVStart.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KISLnchr.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KMailMon.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KMFilter.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KPFW32.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KPFW32X.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KPfwSvc.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KRegEx.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KRepair.com" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KsLoader.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KVCenter.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KvDetect.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KvfwMcl.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KVMonXP.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KVMonXP_1.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\kvol.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\kvolself.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KvReport.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KVScan.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KVSrvXP.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KVStub.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\kvupload.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\kvwsc.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KvXP.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KvXP_1.kxp" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KWatch.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KWatch9x.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\KWatchX.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\loaddll.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\MagicSet.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\mcconsol.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\mmqczj.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\mmsk.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Navapsvc.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Navapw32.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nod32.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nod32krn.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\nod32kui.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\NPFMntor.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\PFW.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\PFWLiveUpdate.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\QHSET.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\QQDoctor.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\QQKav.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Ras.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Rav.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\RavMon.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\RavMonD.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\RavStub.exe" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\RavTask.exe" /f |