Thread: LORD INJECTOR

Results 1 to 6 of 6
  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 Onelordofpain; 10-12-2015 at 03:09 AM.

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

    303e (10-18-2015),ahmed559 (08-02-2016),ajz19981 (10-28-2015),alfekyana (01-14-2016),Antisha (10-06-2016),archiecamba22 (10-27-2016),Asianclub (02-10-2016),bogsy07 (11-22-2015),bong25 (10-21-2018),CentralAlien (10-28-2015),cfcombat023 (10-09-2016),coldfire716 (11-10-2015),cosmicextasy (10-24-2015),Crossfirwe (11-06-2015),daddypappy (08-12-2017),dalethedale (10-17-2015),dewey22 (11-23-2015),Dominick99 (11-19-2015),dpaulo95 (10-14-2015),Ekko95 (02-22-2016),expectable2 (10-26-2015),hooda89 (10-12-2015),Jakazuccato1 (04-29-2016),jaymark256 (01-23-2016),jullyn24 (11-07-2015),kikatus (11-04-2015),kitrock143 (11-10-2015),kuzehhh (03-02-2020),liwiked2016 (11-01-2016),lundis123 (12-08-2015),macro0185 (11-24-2015),mendbest (10-15-2015),mrcrossfiredodo (07-02-2017),Nataria (07-18-2019),naxtgg (09-18-2017),norieljohn05 (10-15-2016),Okenx (10-15-2016),Pixxar234 (10-09-2016),pogzzbelandres13 (10-28-2015),ranieee (10-14-2016),RJGaming21 (10-27-2015),ryuchang (10-25-2017),ryuma009 (10-02-2016),shaiyagalaxy (10-23-2015),shdeed99 (10-29-2015),shyrejay (12-05-2015),smhabib (11-07-2015),ssffr3 (10-13-2015),sungurcan (06-27-2016),TGIFriday12 (10-19-2017),tinaroko (12-30-2015),trufulla (11-24-2015),Vinimackicoisa (10-13-2015),W3eeed (11-01-2015),whitebeard0001 (11-24-2015),xdgxdg123 (10-19-2015),xiaodijia (10-02-2016),xxomg74 (11-17-2015),ZhaoCelestial (12-20-2015)

  3. #2
    Mayion's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Bed
    Posts
    13,504
    Reputation
    4018
    Thanks
    8,372
    My Mood
    Twisted
    /Approved.
    I do not use any type of messenger outside of MPGH.
    Inactive but you can reach me through VM/PM.










     

    Donator - 30 August 2013
    Battlefield Minion - 26 October 2013

    Blackshot Minion - 14 January 2014/16 September 2014
    Minecraft Minion - 7 February 2014/16 September 2014
    WarRock Minion - 23 February 2014
    League of Legends Minion - 21 March 2014

    Minion+ - 15 May 2014
    Other Semi-Popular First Person Shooter Minion - 8 August 2014
    CrossFire Minion - 23 October 2014
    Programming Section Minion - 13 November 2014
    Marketplace Minion - 7 December 2014

    Official Middleman - 7 December 2014 - 27 June 2015
    Moderator - 29 December 2014
    Project Blackout Minion - 10 January 2015
    News Force Interviewer - January 2015
    Steam Games Minion - 21 March 2015
    Dragon Nest Minion - 31 March 2015
    Publicist - April 2015 - 21 September 2015
    Global Moderator - 25 August 2015
    Super User - 13 August 2016



  4. #3
    Onelordofpain's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    195
    Reputation
    10
    Thanks
    4,700
    My Mood
    Cool
    Quote Originally Posted by Mayion View Post
    /Approved.
    Thank You bro )

  5. #4
    GoogleTheCracker's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    347
    Reputation
    71
    Thanks
    106
    Thanks man, could you add my on Skype I have sent you a request, thanks man, I really need .dll files.

  6. #5
    heshamsabry's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    i dont have dll hack . can some one up it

  7. #6
    r43's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    36
    Reputation
    17
    Thanks
    2
    Does this still work?

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