Results 1 to 1 of 1
  1. #1
    DarkSider
    DarkSider is offline
    New member DarkSider's Avatar
    Join Date
    2012 Feb
    Location
    Fortaleza,Brazil
    Posts
    9
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Post My dll´s aren´t being injected more..why not?

    Hello guys,i make hacks for Priston tale since 2008,but i stop doing it 2010,and returned again,i found the game packed withthemida,but i got help and found a way to take the adresses,first challenge winned OK.
    i had choose to make a simple hack this time,because i was out for a long time and forgot lot of things.
    And i removed the code for other functions and i let only hp,mp,res hacks. no my source code(C++).
    updated the adresses used in these functions and ok(im absolut certain that my adress are correct).
    my dlls aren´t being more injected,i used MESSAGEBOX to notify that its being inject and it don´t works,i used Beep after
    while(1) to notify me that it is being injected and also don´t work.
    But at 2008-2010 these methods were working (beep and msgBox).
    I use those (CreateThread)codes:

    Code:
    BOOL APIENTRY DllMain( HMODULE hModule,
                           DWORD  ul_reason_for_call,
                           LPVOID lpReserved
    					 )
    {
    	if( ul_reason_for_call == DLL_PROCESS_ATTACH )
    	{	
    		hThread1 = _beginthread( MainHack, 0, NULL );
    		MessageBox( NULL, "DLL INJECTED", MB_OK );
    	}
           if(( ul_reason_for_call == DLL_PROCESS_DETACH: )
           {
           }
    
        return TRUE;
    }
    
    
    int WINAPI DllMain(HINSTANCE hInstance,DWORD reason,LPVOID lpReserved)
    {
       switch(reason)
       {
       case DLL_PROCESS_ATTACH:
    	   _beginthread( KeyCatcherThread, 0, NULL );
    //	     MessageBox (0, TEXT("Dll Injetada com sucesso!\n"), TEXT("PtCheat"), MB_ICONINFORMATION);
    	   break;
       case DLL_PROCESS_DETACH:
    	   break;
       }
       return true;
    }
    I Tried LoadLibraryA don´t worked too..

    What can i do to make my dll injected on process?
    When i use Perx injector it says dll injected,but i know its not injected,because i use beep and msg box,and a tool to see if my dll is attachd at game.exe Threads.
    When i use Omega injector my pc is restarted..
    When i use g3ntool it crash.
    Please help me..
    Thank you Very Much

Similar Threads

  1. [C++] Easiest way to Hide Injected DLL in Windows
    By Grooguz in forum C/C++
    Replies: 0
    Last Post: 2012-03-04, 04:53 PM
  2. [Question] Injected Dll creating controls
    By codeprada in forum C/C++
    Replies: 1
    Last Post: 2010-12-14, 02:48 PM
  3. Replies: 0
    Last Post: 2010-11-29, 04:08 PM
  4. [Sources] Hiding injected dll
    By ADACH in forum Anti-Cheat Systems
    Replies: 3
    Last Post: 2010-11-29, 03:42 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
  •