Results 1 to 6 of 6
  1. #1
    noleash's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Under your bed!
    Posts
    146
    Reputation
    10
    Thanks
    81
    My Mood
    Flirty

    Post [Request]Injector Tutorial

    Hey guys, I'd like to release my own injector, and I was wondering if is there any tutorial on how to create my own injector in mpgh, a source code or something?

    Thanks in advance

    PS. Is this one still working? I used the search option...
    Last edited by noleash; 08-21-2010 at 11:29 AM.




  2. #2
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    use the search button and then @ VB section typ:
    injector tutorails

    or

    injector source
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  3. #3
    schim's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    My chair
    Posts
    367
    Reputation
    10
    Thanks
    115
    My Mood
    Twisted
    If VB is to easy for you try C++:

    Code:
    #include <iostream>
    #include <windows.h>
    #include <string>
    using namespace std;
    
    struct dll{
    char dp[_MAX_PATH];
    char windowname[_MAX_PATH];
    };
    
    
    int main(){
     HWND hwnd;
     HANDLE hproc;
     HANDLE htread;
     DWORD dwpid = 1;
     DWORD hmodule;
     HINSTANCE hk32 = LoadLibrary( TEXT("kernel32.dll"));
     void *praddres;
     dll d= { "C:\\TestDLL.dll", "SpellForce 2" }; // edit your dll path and your procces here
     hwnd = FindWindowA(NULL, d.windowname);
     GetWindowThreadProcessId(hwnd, &dwpid);
     hproc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, dwpid);
     praddres = VirtualAllocEx( hproc, NULL, sizeof(d.dp), MEM_COMMIT | MEM_RESERVE, 0x40 );
     WriteProcessMemory( hproc, praddres, (void*)d.dp, sizeof(d.dp), NULL);
     htread = CreateRemoteThread( hproc, NULL, 0,(LPTHREAD_START_ROUTINE) GetProcAddress( hk32, "LoadLibraryA" ),praddres, 0, NULL );
     WaitForSingleObject( htread, INFINITE );
     GetExitCodeThread( htread, &hmodule );
     CloseHandle( htread );
     VirtualFreeEx( hproc, praddres, sizeof(d.dp), MEM_RELEASE );
     cout<<"Done\n";
     cin.ignore();
     return 0;
    }
    It doesn't work for CA tough, but it should give you the idea

  4. #4
    noleash's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Under your bed!
    Posts
    146
    Reputation
    10
    Thanks
    81
    My Mood
    Flirty
    Ok, thanks guys, I'm gonna try making my own injector now




  5. #5
    aLcohoL_95's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    SatyRicon
    Posts
    685
    Reputation
    8
    Thanks
    291
    My Mood
    Cynical
    yeah i think this injector is still working

    CANNIBAL CORPSE P0WNS


  6. #6
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,291
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    Awomse
    I like that code

Similar Threads

  1. [TUT](REQUEST) VB 2008 injector tutorial
    By No5cope in forum Visual Basic Programming
    Replies: 8
    Last Post: 11-01-2009, 12:13 PM
  2. <Request> Photoshop Tutorials
    By Calderon in forum Hack Requests
    Replies: 0
    Last Post: 12-15-2007, 07:55 AM
  3. (Request) A tutorial on how to extract addresses from trainers
    By englishpom in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-19-2007, 10:14 PM
  4. [REQUEST]trainer tutorial
    By kanym in forum WarRock - International Hacks
    Replies: 3
    Last Post: 04-24-2007, 07:47 AM
  5. Requesting: Hacking Tutorial
    By AthlaS in forum Hack Requests
    Replies: 1
    Last Post: 01-15-2006, 06:11 PM