Having a problem.

Posts 18 of 8 · Page 1 of 1
Having a problem.
Hello everyone.

As I always do before I work with a new hack for a new game, I always test the game by injecting an empty dll but seems like CA EU is detecting empty dll's, can anyone give me a solution to this problem?

I have tryed everything but nothing seems to be working and I have never worked with a game that detects empty dll's.

I am just bypassing d3d hooks, everything should be undetected by itself.
It's not detecting an empty DLL. It's throwing an error, because theirs nothing in the DLL that can make the game continue to run. Theirs no hooks/DLLMain etc..
They have got some functions to detect dlls, it could be a fail and they made a pattern of dllmain, or hs is looping through the modules and doesnt like the name or something. Try to unlink the dll from peb and use the hide functions spreaded over here.
Quote Originally Posted by Elguet View Post
Hello everyone.

As I always do before I work with a new hack for a new game, I always test the game by injecting an empty dll but seems like CA EU is detecting empty dll's, can anyone give me a solution to this problem?

I have tryed everything but nothing seems to be working and I have never worked with a game that detects empty dll's.

I am just bypassing d3d hooks, everything should be undetected by itself.
How empty is empty? Are we talking a 0 byte DLL file with nothing in it, or just a dllmain which does nothing?
Just do

Code:
BOOL __stdcall DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
      switch(dwReason)
      {
            case DLL_PROCESS_ATTACH:
                  Messagebox(0,0,0,0);
            break;
      }

      return true;
}
compile that and inject and it should work fine.
I tryed all of those things, still doesn't works.. Any other method?
I'm assuming this is something you have done but if not try injecting your dll to another process and just display a messagebox or something. Just to make absolute sure it's not an issue on your behalf.

I had the same problem years ago when I was using Dev-cpp/GCC. I spent days trying to inject a dll I made but nothng would happen. I assumed it was an issue with process attach not getting called but nothing worked, not even the template for dll's provided by Dev. Finally I tried doing it in VS instead and it worked fine right away when injecting. Never figured out what was wrong.

And add more info, what happens when you inject? Does CA terminate? Nothing happens? You sure it's not an issue with your injector? I heard some public injectors crash/are detected but I dunno since I'm using a private loader for CA.
Exactly.. I crash when I even try to inject an empty dll... I talked to other coders and they said that CA EU
does crc checks and your injector can become detected but im not sure about..
Posts 18 of 8 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?