批处理检查指定端口的木马程序
@echo off
Echo 正在检测此端口是否有木马..
Netstat -a -n >gavin.txt -----(创建文件名字)
find fx.txt "7614" >nul* ---(7614自定义端口,你可以任意输入端口)
IF%errorleve1%==0(
Echo.
Echo 系统中存在木马 (结果)
goto end
)
echo.
Echo 恭喜您此端口.. (结果)
:end
Dle/q gavin.txt>nul -----(创建文件名字)