Detected[NEW] LORD INJECTOR

Posts 113 of 13 · Page 1 of 1
[NEW] LORD INJECTOR


Hello again friends
I came to bring a new injector for you guys
Nothing more to say then lets go ;p

I hope you enjoy and that help you guys in the game!
Hugs ..












CSGO INJECTOR to NEW LORD INJECTOR

Process list: Added
Option of selecting game: Added
Process bar: Added

New Coding.

Topic CSGO INJECTOR: CSGO INJECTOR V1.0 [Simple an Easy]





It's simple !

Select the game in "Game" or enter the process in "Process"
Select the hack (.dll) in "Browser"
Select the form of injection (Automatic / Manual)
(Depending on your developer hack it already will tell you which way you should use)
Open the game
Good game





JottiScan 1/21
VirusTotal 1/56





 
CODE
Code:
Coding of Injection :

function CheckProcess(Process: String): boolean;
const PROCESS_TERMINATE=$0001;
var ContinueLoop: BOOL;
    FSnapshotHandle: THandle;
    FProcessEntry32: TProcessEntry32;
begin
 result:=false;
 FSnapshotHandle := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
 FProcessEntry32.dwSize := Sizeof(FProcessEntry32);
 ContinueLoop := Process32First(FSnapshotHandle,FProcessEntry32);
while integer(ContinueLoop) <> 0 do
begin
if ((UpperCase(ExtractFileName(FProcessEntry32.szExeFile)) = UpperCase(Process))
or (UpperCase(FProcessEntry32.szExeFile) = UpperCase(Process))) then
begin
ProcessID:=FProcessEntry32.th32ProcessID;
Result := true;
exit;
end;
ContinueLoop := Process32Next(FSnapshotHandle,FProcessEntry32);
end;
CloseHandle(FSnapshotHandle);
end;

function InjectDll(PID:DWORD; sDll:string):Boolean;
var
hLib:     Pointer;
hThread:  THandle;
pMod:     Pointer;
hOpen:    THandle;
dWritten: Cardinal;
ThreadID: Cardinal;
LibName:  WideString;
begin
  LibName:=WideString(sDll);
  Result := FALSE;
  hOpen := OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
  if hOpen <> INVALID_HANDLE_VALUE then
  begin
    hLib := GetProcAddress(GetModuleHandle(PChar('kernel32.dll')), PChar('LoadLibraryW'));
    pMod := VirtualAllocEx(hOpen, nil, (Length(LibName)*2) + 2, MEM_COMMIT or MEM_RESERVE, PAGE_EXECUTE_READWRITE);
    if WriteProcessMemory(hOpen, pMod,  @LIBName[1], (Length(LibName)*2), dWritten) then
      Result := TRUE;
    hThread := CreateRemoteThread(hOpen, nil, 0, hLib, pMod, 0, ThreadID);
    WaitForSingleObject(hThread, INFINITE);
    CloseHandle(hOpen);
    CloseHandle(hThread);
  end;
end;






Special thanks to @ludgerogabriel for helping me and coding of injection!
@Onelordofpain (ME!)
GLHF.

Helped you ?! Thank not cost anything
[NEW] LORD INJECTOR_mpgh.net.rar846 KB · 1,742 downloads 16/58 malicious
Quote Originally Posted by ObsessedHacker View Post
Great release!
Keep it up!!!
I hope to bring more and more bro
Isn't this the same as every other injector just with different design
Quote Originally Posted by DadDelta View Post
Isn't this the same as every other injector just with different design
Use any injector friend then!
Quote Originally Posted by DadDelta View Post
Isn't this the same as every other injector just with different design
Hes about to be adding manual mapping!!
Quote Originally Posted by lucasheer1 View Post
Hes about to be adding manual mapping!!
Well thats good news.
Looks good.
//Approved
Quote Originally Posted by Color View Post
Looks good.
//Approved
Thank you bro
Why does everybody paste from that old outdated tutorial? "Automatic Injection" and "Close After Inject" are pointless. It's just from this.
Quote Originally Posted by cdr1za View Post
Why does everybody paste from that old outdated tutorial? "Automatic Injection" and "Close After Inject" are pointless and no non-pasted have them. This is just a pasted piece of garbage from this.
I agree with you, wholeheartedly agree!
I do not like to put these options but to do so for many people not only for me or for you!
Besides the layout, how is this different from any of "your" other injectors
Posts 113 of 13 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?