websec80

  博客园  :: 首页  :: 新随笔  :: 联系 ::  :: 管理

netstat -ano|findstr "ESTABLISHED"


根据pid查询进程

 

tasklist /SVC| 2052

 

根据运行的exe文件查找对应路径


wmic process where name="javaw.exe" get ExecutablePath


C:\Program Files (x86)\Java\jre6\bin\javaw.exe

 

删除不了 结束进程


用vbs循环查杀进程

On Error Resume Next
do while 1
for each ps in getobject _
("winmgmts:\\.\root\cimv2:win32_process").instances_
if(ps.name="AliYunDun.exe" ) then
ps.terminate
end if
next
Wscript.Sleep 100
loop

 

重命名木马  然后删除

posted on 2016-11-12 22:25  websec80  阅读(496)  评论(0)    收藏  举报