Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    ValidLeecher's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    102
    Reputation
    10
    Thanks
    190
    My Mood
    Hungover

    XTrap and HGWC Bypass v2.

    XTrap-Bypass Source v2 (32/64 bit)
    Code:
    #include <Windows.h>
    #include <process.h>
    #include <TlHelp32.h>
    #include <Psapi.h>
    #include "mHook.h"
      
    #pragma comment(lib,"Psapi.lib")
      
    // Module to exit
    HMODULE hDLL;
      
    /* Our hooked-function */
    void DefineNothing_CC();
    /* Our hooked-function */
    void K32Enum_CC();
      
      
      
    // Function to begin the hook
    void _beginhook(void*){
      
            // our addresses
            DWORD dwAddy;
            DWORD dwDLL;
            DWORD dwXTrap;
            DWORD dwXTrapDriver;
      
      
            // wait for xtrap
            while(1){
                    // break
                    Sleep(500);
                    // get xtrap base
                    dwXTrap = (DWORD)GetModuleHandle("XTrapVa.dll");
                    // check if it exists
                    if(dwXTrap){
                            // leave
                            break;
                    }
      
            }
            
      
            if(PSAPI_VERSION == 1){
            // get address
            dwDLL = (DWORD)GetModuleHandle("Psapi.dll");
            // get address
            dwAddy = (DWORD)GetProcAddress((HINSTANCE)dwDLL,"EnumProcesses");
            // Prevent that Xtrap scan processes
            mHook::DetourCodeCave(dwAddy,(DWORD)DefineNothing_CC,19);
      
            // get address
            dwDLL = (DWORD)GetModuleHandle("Kernel32.dll");
            // get address
            dwAddy = (DWORD)GetProcAddress((HINSTANCE)dwDLL,"ExitProcess");
            // Prevent exit then ollydbg was found
            mHook::DetourCodeCave(dwAddy,(DWORD)DefineNothing_CC,27);
            }
            else
            {
            // little break
            Sleep(500);
            // set new dll
            dwDLL = (DWORD)GetModuleHandle("Kernel32.dll");
            // get new addy
            dwAddy = (DWORD)GetProcAddress((HINSTANCE)dwDLL,"K32EnumProcesses");
            // Prevent that Xtrap scan processes
            mHook::DetourCodeCave(dwAddy,(DWORD)K32Enum_CC,3);
      
            // get address
            dwDLL = (DWORD)GetModuleHandle("Kernel32.dll");
            // get address
            dwAddy = (DWORD)GetProcAddress((HINSTANCE)dwDLL,"ExitProcess");
            // Prevent exit then ollydbg was found
            mHook::DetourCodeCave(dwAddy,(DWORD)DefineNothing_CC,27);
      
            }
      
            // Get driver Address
            dwXTrapDriver = 0x406668A0;
            // Change it
            wmemcpy((wchar_t*)dwXTrapDriver,L"X6va01",6);
      
            // Exit
            FreeLibraryAndExitThread(hDLL,8);
      
    }
      
      
      
      
    /* Main */
    BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved){
      
      
            if(fdwReason == DLL_PROCESS_ATTACH){
      
                    
                   
                    // set our Module
                    hDLL = hinstDLL;
                    // begin
                    _beginthread(_beginhook,0,0);
      
                    // success
                    return true;
            }
      
            // fail
            return false;
    }
      
      
    /* Our hooked-function */
    __declspec( naked ) void K32Enum_CC(){
            __asm{
                    ret 0x00C
            }
    }
      
    /* Our hooked-function */
    __declspec( naked ) void DefineNothing_CC(){
            __asm{
                    mov edi,edi
                    push ebp
                    mov ebp,esp
                    pop ebp
                    jmp orig
                    nop
                    nop
                    nop
                    nop
                    nop
    orig:
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
                    nop
            }
    }
    HGWC Bypass Function Source Only (64 bit)
    Code:
    #define TRUE FALSE
    class HGWC
    {
     
    public:
     
        int HGWC::FileDetection(int);
        int HGWC::KeepAlive(int);
        int HGWC::Bann(int);
        int HGWC::Thread(int);
    }rect;
     
    int HGWC::FileDetection(int LParam)
    {
        memcpy((LPVOID)0x0040CAE1,(LPVOID)"\xEB",1);
        return 0;
    }
     
    int HGWC::KeepAlive(int LParam)
    {
        memcpy((LPVOID)0x0040D5B7,(LPVOID)"\xEB",1);
        return 0;
    }
     
    int HGWC::Bann(int LParam)
    {
        memcpy((LPVOID)0x0040F9FD,(LPVOID)"\xEB",1);
        memcpy((LPVOID)0x0040FA31,(LPVOID)"\xEB",1);
        memcpy((LPVOID)0x0040FB71,(LPVOID)"\xC2\x0C\x00\x90\x90",5);
        memcpy((LPVOID)0x00410270,(LPVOID)"\xC2\x0C\x00\x90\x90",5);
        return 0;
    }
     
    int HGWC::Thread(int LParam)
    {
        memcpy((LPVOID)0x0040D4E3,(LPVOID)"\x6A\x7D",2);
        memcpy((LPVOID)0x00418F91,(LPVOID)"\xEB\x0A",2);
        memcpy((LPVOID)0x00464147,(LPVOID)"\x68\xFF\x08\x00\x00",5);
        memcpy((LPVOID)0x00410270,(LPVOID)"\xC2\x0C\x00\x90\x90",5);
        return 0;
    }
    Update some of it.
    You need reverse engineering basics.
    I accept thanks too.

    Credits: Akira
    Last edited by ValidLeecher; 07-12-2014 at 06:07 AM.

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

    GausVN (08-25-2014),HLBOT (07-12-2014)

  3. #2
    bandi12's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    562
    Reputation
    30
    Thanks
    318
    My Mood
    Yeehaw
    One thing i found very funny.

    Now 1 week , you were begging for help , and now you say that "You need reverse engineering basics." I doubt that you learn'd reversing engineering in 1 week.
    And you want thanks for what ? That you C+P HGWC Bypass from pastebin ??
     




    MY Latest Aimbot on : Orbital Space (Video Comming Soon)'





     

    - @UltraPGNoob
    - @dicky88smd
    - @giniyat101

  4. #3
    ValidLeecher's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    102
    Reputation
    10
    Thanks
    190
    My Mood
    Hungover
    I'm just trying to keep the crossfire section alive by feeding it with useful posts.
    Okay if that is your opinion, Its okay.
    Last edited by ValidLeecher; 07-12-2014 at 06:14 AM.

  5. #4

  6. #5
    Astr3Lune's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Banten
    Posts
    282
    Reputation
    10
    Thanks
    8
    where i can find detourcodecave?

    I need DetourCodeCaVe.

  7. #6
    ValidLeecher's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    102
    Reputation
    10
    Thanks
    190
    My Mood
    Hungover
    Google it,please.
    You can also find a tutorial at youtube.

    Quote Originally Posted by I2espect View Post
    HGWC bypass credits to Slicktor.... [ For S4League Game ]
    Adapt it to crossfire.
    Last edited by iSmexy; 08-10-2014 at 02:09 PM.

  8. #7
    jastre's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    i cant build it pls help me

  9. #8
    Astr3Lune's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Banten
    Posts
    282
    Reputation
    10
    Thanks
    8
    Quote Originally Posted by ValidLeecher View Post
    Google it,please.
    You can also find a tutorial at youtube.
    Not found detourcodecave .
    Why must use detourcodecave?
    Because i don,t have detourcodecave.
    this bypass xtrap can use other detour?

    Give me youtbe link for tutorial.
    I wont to see.

  10. #9
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed
    you post a really useless function, this is for S4League and you keep saying "you need assembly basic", "update it".

    of course you want this, they will update for you can give you full code... but yeah, this will not happen this time bro sorry :c

  11. #10
    ValidLeecher's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    102
    Reputation
    10
    Thanks
    190
    My Mood
    Hungover
    Quote Originally Posted by XarutoUsoCrack View Post
    you post a really useless function, this is for S4League and you keep saying "you need assembly basic", "update it".

    of course you want this, they will update for you can give you full code... but yeah, this will not happen this time bro sorry :c
    I got the xtrap bypass working.

  12. #11
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    your hgwc bypass is really complex mine is simpler

  13. #12
    ValidLeecher's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    102
    Reputation
    10
    Thanks
    190
    My Mood
    Hungover
    Quote Originally Posted by kmanev073 View Post
    your hgwc bypass is really complex mine is simpler
    nigga....share it.

  14. #13
    Astr3Lune's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Banten
    Posts
    282
    Reputation
    10
    Thanks
    8
    what a call funtion for Bypass HGWC?

    more question
    How to get Xtrap Driver address?

    and i need source DetourCodeCave.

  15. #14
    kanza224's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    england
    Posts
    6
    Reputation
    10
    Thanks
    0
    When I start crossfire I keep getting an xtrap error saying "Game cannot run properly", then after 5 secs the crossfire client shuts down. Is this what I use to prevent Xtrap from shutting the client down? If so, how do I use this?

  16. #15
    doodlemeat's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Still working?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help Request] [Help] ByPassed Xtrap But HGWC Detected!!
    By bao857600 in forum CrossFire Help
    Replies: 8
    Last Post: 08-13-2013, 08:24 AM
  2. [Info] I already know now, how to bypass X-Trap and HGWC
    By Pronome191 in forum CrossFire Discussions
    Replies: 22
    Last Post: 01-11-2013, 11:24 AM
  3. [Solved] Need Help with Bypass Xtrap and game crash
    By Table in forum CrossFire Help
    Replies: 7
    Last Post: 07-06-2011, 08:11 AM
  4. Xtrap and HGWC load slowly
    By Ackel12 in forum CrossFire Help
    Replies: 2
    Last Post: 06-15-2011, 03:16 AM
  5. lets trade i got uce and pb bypass
    By shadowsecret in forum Trade Accounts/Keys/Items
    Replies: 7
    Last Post: 04-23-2007, 06:56 PM