Page 1 of 3 123 LastLast
Results 1 to 15 of 34
  1. #1
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty

    I Bring you.. A HACKSHIELD BYPASS Source Code

    I have found this hackshield bypass source code on the net~!
    We all need a bypass so hopefuly someone can make this work
    Here is the code.
    Please, Please make a bypass :P

    Code:
    #define HS_JMP            0x63B31D
    #define HS_JMP2            0x63B323
    
    typedef int            (__cdecl *HS_GetProcAddress_t)( int hModule, int a2 );
    typedef int            (__stdcall *HackshieldComm_t )( int, void*, void* );
    typedef signed int    (__stdcall *KickProc_t)( int a1, int a2, int a3 );
    
    HS_GetProcAddress_t                pHS_GetProcAddress        = NULL;
    HackshieldComm_t                pHackshieldComm            = NULL;
    KickProc_t                        pKickProc                = NULL;
    
    signed int __stdcall new_KickProc( int a1, int a2, int a3 )
    {
        return 1;
    }
    
    int __stdcall new_HackshieldComm( int hsCommCode, void *Param1, void *Param2 )
    {
        if( hsCommCode == 4 || hsCommCode == 5 || hsCommCode == 13 ) //kill!
        {
            if( hsCommCode == 4 ) //replace kick proc
            {
                DWORD *dwParam1 = (DWORD *)Param1;
    
                pKickProc    = (KickProc_t)*dwParam1;
                *dwParam1    = (DWORD)new_KickProc;
            }
    
            int iReturn = pHackshieldComm( hsCommCode, Param1, Param2 );
    
            return 1;
        }
    
        int iReturn = pHackshieldComm( hsCommCode, Param1, Param2 );
    
        return iReturn;
    }
    
    void HookCommunication( EXCEPTION_POINTERS* pExceptionInfo )
    {
        DWORD dwEbp        = pExceptionInfo->ContextRecord->Ebp;
        DWORD dwParam2    = 0;
    
        __asm
        {
            push eax;
            push edx;
            mov eax, dwEbp;
            mov edx, [eax+0xC];
            mov dwParam2, edx;
            pop edx;
            pop eax;
        }
    
        if( dwParam2 == 0xA ) //this is the ordinal of some export...hmm..
        {
            pHackshieldComm                        = (HackshieldComm_t)pExceptionInfo->ContextRecord->Eax;
            pExceptionInfo->ContextRecord->Eax    = (DWORD)new_HackshieldComm;
        }
    
        pExceptionInfo->ContextRecord->Eip        = HS_JMP2;
    
        return;
    }
    
    PVOID pContextHandler = NULL;
    
    LONG WINAPI ***ExceptionHandler( EXCEPTION_POINTERS* pExceptionInfo )
    {
        if( pExceptionInfo->ExceptionRecord->ExceptionCode != EXCEPTION_SINGLE_STEP )
        {
            return EXCEPTION_CONTINUE_SEARCH;
        }
    
        if( pExceptionInfo->ExceptionRecord->ExceptionAddress == (PVOID)HS_JMP ) 
        {
            HookCommunication( pExceptionInfo );
            return EXCEPTION_CONTINUE_EXECUTION;
        }
    
        return EXCEPTION_CONTINUE_SEARCH;
    }
    
    void InitContextHook()
    {
        pContextHandler = AddVectoredExceptionHandler( 0x50BE17, ***ExceptionHandler );
    
        CONTEXT Context;
        Contex*****ntextFlags = CONTEXT_DEBUG_REGISTERS;
        GetThreadContext(GetCurrentThread(), &Context);
        Context.Dr0 = HS_JMP;
        Context.Dr7 = (1<<0)|(1<<2)|(1<<4)|(1<<6);
        SetThreadContext(GetCurrentThread(), &Context);
    I think it is C++ but im not quite sure.

    HERE YOU GO CODERS. GOOD LUCK!

    acid_buRn

  2. #2
    Melikepie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    1,652
    Reputation
    12
    Thanks
    131
    My Mood
    Amazed
    C++ im guessing
    [IMG]https://z.abou*****m/d/politicalhumor/1/0/j/z/1/obama_superman_awesome.jpg[/IMG]

  3. #3
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by Melikepie View Post
    C++ im guessing
    yah me too. Not 100% sure tho

  4. #4
    Luke420's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Computer :/
    Posts
    6,768
    Reputation
    674
    Thanks
    982
    My Mood
    Cold
    yeah i fucked up my net cut out i dident think it sent fuck sorry my bad
    Last edited by Luke420; 09-28-2009 at 03:06 AM.

  5. #5
    Luke420's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Computer :/
    Posts
    6,768
    Reputation
    674
    Thanks
    982
    My Mood
    Cold
    yeah i am pretty sure that C++ if not oh well I but i reaLLY APPROVE i just like saying i don't xD

  6. #6
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by Luke420 View Post
    yeah looks like C++ but I lol i like this good job bro i really approve your msg lol
    lol?

    -too short-

  7. #7
    Luke420's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Computer :/
    Posts
    6,768
    Reputation
    674
    Thanks
    982
    My Mood
    Cold
    Quote Originally Posted by ac1d_buRn View Post
    lol?

    -too short-
    fuckkkkkkkkkkkkkkkkkkkkkkk i dlb posted

  8. #8
    LegendaryAbbo's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    5,243
    Reputation
    23
    Thanks
    546
    My Mood
    Relaxed
    There's plenty of these sources but they don't help much because you need to know asm to find the new addies

  9. #9
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by Luke420 View Post
    fuckkkkkkkkkkkkkkkkkkkkkkk i dlb posted
    U might have to ban yourself XD

  10. #10
    Melikepie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    1,652
    Reputation
    12
    Thanks
    131
    My Mood
    Amazed
    Luke u don't mod this section how do u approve XD
    [IMG]https://z.abou*****m/d/politicalhumor/1/0/j/z/1/obama_superman_awesome.jpg[/IMG]

  11. #11
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    If we can get this to work, I should add a message box in there for credits for me, and acid burn for posting
    That's IF I can get it to work...

  12. #12
    Luke420's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Computer :/
    Posts
    6,768
    Reputation
    674
    Thanks
    982
    My Mood
    Cold
    Quote Originally Posted by Melikepie View Post
    Luke u don't mod this section how do u approve XD
    fuckkkkkkkkkkk i dlb posted and i dont know i am bored so i came here not to dlb post tho fml ahhhhhh

  13. #13
    Melikepie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    1,652
    Reputation
    12
    Thanks
    131
    My Mood
    Amazed
    your eu section must be boring as hell
    [IMG]https://z.abou*****m/d/politicalhumor/1/0/j/z/1/obama_superman_awesome.jpg[/IMG]

  14. #14
    Luke420's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Computer :/
    Posts
    6,768
    Reputation
    674
    Thanks
    982
    My Mood
    Cold
    Quote Originally Posted by ac1d_buRn View Post
    U might have to ban yourself XD
    ahh no i don't wanna then i will not be able to mod fuck fuck fuck wwhat will i do XD

  15. #15
    -James's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    MEETING TRUNKY ON XBOX. OH WAIT, HE DOESNT HAVE IT
    Posts
    4,942
    Reputation
    41
    Thanks
    817
    My Mood
    Bashful
    Tommorrow Nexon is patching.

    Today was the HackShield update.

    I'll keep this open for a lil bit more, but if its patched, or doesnt work, i dont want spam, which is what ive seen so far, on the front page.

Page 1 of 3 123 LastLast

Similar Threads

  1. X-Trap Bypass Source Code
    By NoJustice in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 24
    Last Post: 05-07-2011, 08:05 PM
  2. Hackshield bypass {Source code}
    By headsup in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 37
    Last Post: 12-30-2009, 07:17 PM
  3. Bypass Source Code
    By FORCE™ in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 113
    Last Post: 12-30-2009, 07:13 PM
  4. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM