Results 1 to 2 of 2

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 V1.1



    Hello friends ..
    As few as updating my injector
    Well this as most of my release has been rewritten!

    I hope this helps, that you enjoy and good game

    ______________________________________________



     

     

     


    ______________________________________________



     
    XBOX


    WHITE/BLUE


    WIN XP


    GREY/BLUE


    VISTA


    METRO


    ______________________________________________


    News LORD INJECTOR to LORD INJECTOR V1.1

    Added option to choose theme

    Nothing else
    Once my injector is not detected I will not rewrite it again

    Topic to LORD INJECTOR: 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


    Note: I found a bug with the doubts of Users In my injector
    if you happen to follow the step-down!

    "Injector closes when I select dll"

    Good for that I already found the solution, follow these instructions:
    Open the nozzle and do whatever you have to do, how to choose
    dll and the process. Having done this, open your game, wait for him to carry,
    after loaded va until the push and click "INJECT NOW"
    ______________________________________________



    JottiScan 1/21
    VirusTotal 2/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

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

    ahboon1999 (02-15-2017),aluoxx (11-07-2015),amir3277 (08-04-2016),aposan9987 (10-22-2015),camargao (10-28-2015),cheater091999 (10-28-2015),darksd (10-24-2015),ectus (10-29-2015),espanseo (03-10-2017),Hellix (11-01-2015),laichunkiaw (11-15-2015),limzt (10-20-2015),matthewmtm (10-22-2015),Mjrem (09-10-2017),neiker (10-25-2015),pest032 (03-26-2017),serkutannnn (10-21-2015),Skrimer228 (07-25-2016),winbans (10-23-2015),xLuq1337 (03-19-2017),zifss (10-26-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