Results 1 to 7 of 7

Thread: Base DLL Hack

  1. #1
    emoisback
    emoisback is offline
    Full member
    Join Date
    2011 Dec
    Location
    Indonesia there i'm
    Posts
    508
    Thanks Thanks Given 
    83
    Thanks Thanks Received 
    244
    Thanked in
    68 Posts
    Rep Power
    13

    Cool Base DLL Hack

    Dear All,

    Long time no see, i have many real life bussiness..
    I now i want to share, dll hack base that i've finished last day..


    Code:
    #include <windows.h>
    #include <stdio.h>
    
    #ifdef COMPILE_MYLIBRARY
      #define MYLIBRARY_EXPORT __declspec(dllexport)
    #else
      #define MYLIBRARY_EXPORT
    #endif
    
    class MYLIBRARY_EXPORT ClassHack{
            //OFFSET GAME HACK
    	#define OneHitCSD 0x0000
    	public :
    		static DWORD WINAPI MainHack(LPVOID param){
    			LPCSTR ModulGame = "gamename.exe";
    			while(true) // Always run (working like Freeze on CE
    			{			
    				if (GetAsyncKeyState(VK_F1)&1) { // activated when press F1
    					MessageBeep(MB_ICONINFORMATION);
    					DWORD adrMin1 = 0;
    					DWORD dwPB = (DWORD)GetModuleHandleA(ModulGame);
    					if (dwPB > 0) {
    						adrMin1 = dwPB + (DWORD)OneHitCSD;
    						EditMemory((void *)(adrMin1),(void*)(PBYTE)"\x4D\x49\x4e", 3);//4d494e
    					}
    				}	
    				Sleep(50);
    			}
    		};
    
    	private :
    
    		static void EditMemory (void *adr, void *ptr, int size)
    		{
    			DWORD OldProtection;
    			VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
    			memcpy(adr,ptr,size);
    			VirtualProtect(adr,size,OldProtection, &OldProtection);
    		}
    
    
    };
    
    extern "C"
    BOOL WINAPI DllMain(HINSTANCE module, DWORD dwReason, LPVOID lpvReserved) 
    {
    	if(dwReason == DLL_PROCESS_ATTACH)
    	{
    		DisableThreadLibraryCalls(module);
    		MessageBoxA(NULL,"Created By Nephilim@dremnant / emoisback@progamercity","D'Remnant & ProgamerCity",MB_ICONINFORMATION);
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)LostSaga::ClassHack, 0, 0, 0);
    	}
    	return TRUE;
    }

    After you compile it, u will have 1 DLL, that u can try use injector out there or your own injector to inject dll to game process, and kick game ass..
    Learn from PGC for Share on PGC..


    For another Stuff i have make try to find it [Please, register to view links]
    If i have help you, please thanks and respect ..

  2. The Following 4 Users Say Thank You to emoisback For This Useful Post:


  3. #2
    LKMaster
    LKMaster is offline
    Member-in-training LKMaster's Avatar
    Join Date
    2012 Mar
    Location
    kernel32.dll
    Posts
    81
    Thanks Thanks Given 
    29
    Thanks Thanks Received 
    89
    Thanked in
    18 Posts
    Rep Power
    0
    Good..

  4. #3
    GuiBoratto
    GuiBoratto is offline
    Member-in-training GuiBoratto's Avatar
    Join Date
    2012 Sep
    Posts
    62
    Thanks Thanks Given 
    42
    Thanks Thanks Received 
    17
    Thanked in
    11 Posts
    Rep Power
    0
    Dll What does this do exactly?

  5. #4
    bisxcoito
    bisxcoito is offline
    Member-in-training bisxcoito's Avatar
    Join Date
    2013 Apr
    Location
    Far Far away.
    Posts
    119
    Thanks Thanks Given 
    23
    Thanks Thanks Received 
    41
    Thanked in
    25 Posts
    Rep Power
    0
    Try this and you know what is a dll....

    English=> Dynamic-link library - Wikipedia, the free encyclopedia
    Portuguese => DLL – Wikipédia, a enciclopédia livre

  6. #5
    marcogaruthi
    marcogaruthi is offline
    Member-in-training marcogaruthi's Avatar
    Join Date
    2012 Aug
    Location
    BR - ELLORA
    Posts
    161
    Thanks Thanks Given 
    26
    Thanks Thanks Received 
    65
    Thanked in
    41 Posts
    Rep Power
    0
    thanks man

  7. #6
    emoisback
    emoisback is offline
    Full member
    Join Date
    2011 Dec
    Location
    Indonesia there i'm
    Posts
    508
    Thanks Thanks Given 
    83
    Thanks Thanks Received 
    244
    Thanked in
    68 Posts
    Rep Power
    13
    Your welcome,

    hope that's will usefull...
    Learn from PGC for Share on PGC..


    For another Stuff i have make try to find it [Please, register to view links]
    If i have help you, please thanks and respect ..

  8. #7
    alenuar
    alenuar is offline
    New member
    Join Date
    2013 Feb
    Posts
    16
    Thanks Thanks Given 
    5
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0
    thnks man

Similar Threads

  1. Aion base address, offsets
    By Dwar in forum Aion Bots, Hacks, Cheats
    Replies: 11
    Last Post: 2013-06-05, 02:33 PM
  2. Aika Offsets, base address
    By Dwar in forum Aika Online
    Replies: 78
    Last Post: 2012-04-06, 12:27 PM
  3. [Tutorial] How to search base address of Aika
    By codename209 in forum Aika Guides, Tutorials
    Replies: 22
    Last Post: 2012-02-22, 12:16 PM
  4. Aika Indonesia Offset, Base Address
    By psycheangel in forum Aika Online
    Replies: 5
    Last Post: 2011-12-26, 08:15 PM
  5. Can't find base addres with CE
    By DJK in forum General Game Research
    Replies: 7
    Last Post: 2010-12-12, 11:53 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •