Thread: LORD INJECTOR

Results 1 to 4 of 4

Threaded View

  1. #1
    Onelordofpain's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    195
    Reputation
    10
    Thanks
    4,700
    My Mood
    Cool

    LORD INJECTOR



    Hello friends ..
    As few as updating my injector
    FOR PEOPLE WHO ONLY COME HERE TO SAY "What is the difference this to other injectors her?"
    Well this as most of my release has been rewritten!

    I hope this helps, that you enjoy and good game

    ______________________________________________







    ______________________________________________


    News [New] LORD INJECTOR to LORD INJECTOR

    Translations: Removed
    Anyone with BRAIN understand what each injector function means

    Injection Method: Options Automatic/Manual Removed
    Injection only manually now for better performance and security

    Functions: "Save List" and "Clear List" Removed
    They were not necessary and no one used that is the truth

    Games Bar: Removed
    Now you will have to put the process related to the game manually

    Close after Injection: Removed

    New interface

    Topic to [NEW] LORD INJECTOR: [NEW]LORD INJECTOR

    ______________________________________________



    Type the file regarding their game in "Process"
    Select the hack (.dll) in "Browser"
    (if your game is open search process in his "List of Process." If you do not will need to follow the next part of the tutorial)
    Open your game, minimizes it (the game) and click "INJECT NOW" at the injector
    Ready

    Good Game

    ______________________________________________



    JottiScan 1/21
    VirusTotal 1/56

    ______________________________________________



     
    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!)
    @akosipol by designer
    @rwby for helping in disseminating
    GLHF.



    Helped you ?! Thank not cost anything
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Hunter; 12-23-2015 at 07:15 AM.

  2. The Following 10 Users Say Thank You to Onelordofpain For This Useful Post:

    ali_amarya (10-16-2015),Dimys1 (10-12-2015),GMmixx (10-12-2015),imlivein5 (10-12-2015),josefersom (04-05-2016),lBLinzXx (01-06-2016),LottyDewt (10-16-2015),ludgerogabriel (10-12-2015),pederpan (10-14-2015),slirheart111 (10-12-2015)

Similar Threads

  1. [Release] LORD INJECTOR V1
    By Onelordofpain in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 12
    Last Post: 06-02-2016, 08:55 PM
  2. [Outdated] LORD INJECTOR [V3]
    By Onelordofpain in forum Counter-Strike 2 Coding & Resources
    Replies: 15
    Last Post: 09-27-2015, 11:53 PM
  3. [Outdated] LORD INJECTOR V2
    By Onelordofpain in forum Counter-Strike 2 Coding & Resources
    Replies: 14
    Last Post: 09-26-2015, 10:53 AM
  4. [Outdated] LORD INJECTOR [V3]
    By Onelordofpain in forum Blackshot Injectors & Tools
    Replies: 0
    Last Post: 09-26-2015, 10:15 AM
  5. [Release] LORD INJECTOR V1
    By Onelordofpain in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 1
    Last Post: 09-24-2015, 02:47 PM