Thread: Injection

Results 1 to 7 of 7
  1. #1
    gomomo's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    9

    Injection

    Hi guys, I wonder which injection method are you using?

    Xtrap detects my dll even If I put a simple messagebox in dllmain and it still gets detected.

    Code:
    #include <windows.h>
    #include <process.h>
    
    
    UINT WINAPI testfunc(VOID *)
    {
        MessageBoxA(0, " test",  "test",  0);
    	return 1;
    }
    
    BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
    {
        if ( fdwReason == 1 )
        {
            _beginthreadex(0, 0, testfunc, 0, 0, 0);
        }
        return 1;
    }
    Thanks

  2. #2
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Put the MessageBox into the DllMain, before the BeginThreadEx







  3. #3
    gomomo's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    9
    Quote Originally Posted by rabir007 View Post
    Put the MessageBox into the DllMain, before the BeginThreadEx
    Are you serious...? I'm not talking about the messagebox, I'm talking about xtrap detection...

  4. #4
    Palestine_Freedom's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by gomomo View Post
    Hi guys, I wonder which injection method are you using?

    Xtrap detects my dll even If I put a simple messagebox in dllmain and it still gets detected.

    Code:
    #include <windows.h>
    #include <process.h>
    
    
    UINT WINAPI testfunc(VOID *)
    {
        MessageBoxA(0, " test",  "test",  0);
    	return 1;
    }
    
    BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
    {
        if ( fdwReason == 1 )
        {
            _beginthreadex(0, 0, testfunc, 0, 0, 0);
        }
        return 1;
    }
    Thanks
    X-Trap is detecting Dynamic Link Library (DLL) when injecting to crossfire.exe, there's a method been posted which all are using it now.
    https://www.mpgh.net/forum/242-crossf...-hacks-ud.html

  5. #5
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    @gomomo
    Let us know how you get on with that method Palestine_Freedom linked you to.

    I used to use a little app i made for fixing the dll.
    [IMG]https://i203.photobucke*****m/albums/aa29/Baxter_esa/PatcherScreen_zps9767ac7e.png[/IMG]

    Just tested it and still works. Let me know if you want a copy.
    I don't mess with CF much anymore so i don't mind sharing it.
    Straight forward to use, click the button and choose a dll.
    The original dll is replaced with the fixed one.

  6. #6
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by gomomo View Post
    Are you serious...? I'm not talking about the messagebox, I'm talking about xtrap detection...
    Xtrap detecting the way your hack works... So all you have to do, is to change the way...
    I mean the algorithm







  7. #7
    Palestine_Freedom's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Pingo View Post
    @gomomo
    Let us know how you get on with that method Palestine_Freedom linked you to.

    I used to use a little app i made for fixing the dll.
    [IMG]https://i203.photobucke*****m/albums/aa29/Baxter_esa/PatcherScreen_zps9767ac7e.png[/IMG]

    Just tested it and still works. Let me know if you want a copy.
    I don't mess with CF much anymore so i don't mind sharing it.
    Straight forward to use, click the button and choose a dll.
    The original dll is replaced with the fixed one.
    Can you share your program with me please ? i am too much lazy to download Windows SDK (:.

Similar Threads

  1. Replies: 4
    Last Post: 02-18-2014, 06:40 PM
  2. [Help]Undetected D3d Injection
    By Kung Fu Penguin31 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 10-28-2007, 03:40 PM
  3. Question about SQL Injections
    By darkounet in forum General Game Hacking
    Replies: 0
    Last Post: 06-29-2007, 11:13 PM
  4. KO can be sql injected
    By sf0d in forum General Game Hacking
    Replies: 2
    Last Post: 01-26-2006, 09:50 PM
  5. DLL injection Failled
    By aynal in forum WarRock - International Hacks
    Replies: 1
    Last Post: 01-15-2006, 09:41 PM