'델파이7.2다운'에 해당되는 글 2건

  1. 2020.04.11 :: [DelPhi] DLL 인젝터 소스
  2. 2020.04.11 :: [DelPhi] 델파이 7.2 다운로드 (압축/분활)
DelPhi 2020. 4. 11. 13:54

uses Windows;var BytesWritten: cardinal; PID, Process, Thread, ThreadId, hKernel: dword;pLoadLibrary, Paramaters: pointer; DLL: AnsiString; begin DLL := 'C:\test.dll'; // Must be full path name. PID := 3160; Process := OpenProcess(PROCESS_ALL_ACCESS, False, PID);Paramaters := VirtualAllocEx(Process, nil, Length(DLL), MEM_COMMIT,PAGE_EXECUTE_READWRITE); WriteProcessMemory(Process, Paramaters, PAnsiChar(DLL),Length(DLL), BytesWritten); hKernel := GetModuleHandle('KERNEL32.DLL'); pLoadLibrary := GetProcAddress(hKernel, 'LoadLibraryA'); Thread := CreateRemoteThread(Process, nil, 0,pLoadLibrary, Paramaters, 0, ThreadId); WaitForSingleObject(Thread, INFINITE);VirtualFreeEx(Process, Paramaters, 0, MEM_RELEASE); CloseHandle(Thread);CloseHandle(Process);end.

My DLL code is simple like this:

uses SysUtils, Classes, Windows;{$R *.res}procedure EntryPoint(Reason: dword); stdcall;begin if Reason = DLL_PROCESS_ATTACH then begin MessageBox(0, 'DLL Injected', 'DLL Injected', 0); end;end;begin DLLProc:= @EntryPoint; EntryPoint(DLL_PROCESS_ATTACH);end.>

 

@ALL 중요포인트! < OK !​ 

posted by 핵커 커뮤니티
:
DelPhi 2020. 4. 11. 13:50

Delphi.7.Second.Edition.v7.2.vol1.egg
10.00MB
Delphi.7.Second.Edition.v7.2.vol2.egg
10.00MB
Delphi.7.Second.Edition.v7.2.vol3.egg
10.00MB
Delphi.7.Second.Edition.v7.2.vol4.egg
10.00MB
Delphi.7.Second.Edition.v7.2.vol5.egg
2.05MB

posted by 핵커 커뮤니티
: