Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Combat Arms Hacks & Cheats › I Bring you.. A HACKSHIELD BYPASS Source Code

I Bring you.. A HACKSHIELD BYPASS Source Code

Posts 1–15 of 34 · Page 1 of 3
ac1d_buRn
ac1d_buRn
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
#1 · 16y ago
Melikepie
Melikepie
C++ im guessing
#2 · 16y ago
ac1d_buRn
ac1d_buRn
Quote Originally Posted by Melikepie View Post
C++ im guessing
yah me too. Not 100% sure tho
#3 · 16y ago
Luke420
[MPGH]Luke420
yeah i fucked up my net cut out i dident think it sent fuck sorry my bad
#4 · edited 16y ago · 16y ago
Luke420
[MPGH]Luke420
yeah i am pretty sure that C++ if not oh well I but i reaLLY APPROVE i just like saying i don't xD
#5 · 16y ago
ac1d_buRn
ac1d_buRn
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-
#6 · 16y ago
Luke420
[MPGH]Luke420
Quote Originally Posted by ac1d_buRn View Post
lol?

-too short-
fuckkkkkkkkkkkkkkkkkkkkkkk i dlb posted
#7 · 16y ago
LE
LegendaryAbbo
There's plenty of these sources but they don't help much because you need to know asm to find the new addies
#8 · 16y ago
ac1d_buRn
ac1d_buRn
Quote Originally Posted by Luke420 View Post
fuckkkkkkkkkkkkkkkkkkkkkkk i dlb posted
U might have to ban yourself XD
#9 · 16y ago
Melikepie
Melikepie
Luke u don't mod this section how do u approve XD
#10 · 16y ago
Pixie
Pixie
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...
#11 · 16y ago
Luke420
[MPGH]Luke420
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
#12 · 16y ago
Melikepie
Melikepie
your eu section must be boring as hell
#13 · 16y ago
Luke420
[MPGH]Luke420
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
#14 · 16y ago
-James
-James
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.
#15 · 16y ago
Posts 1–15 of 34 · Page 1 of 3

Post a Reply

Similar Threads

  • Hackshield bypass {Source code}By headsup in Combat Arms Hack Coding / Programming / Source Code
    37Last post 16y ago
  • X-Trap Bypass Source CodeBy NoJustice in CrossFire Hack Coding / Programming / Source Code
    24Last post 15y ago
  • Bypass Source CodeBy FORCE™ in Combat Arms Hack Coding / Programming / Source Code
    113Last post 16y ago
  • [Release] WarHax DLL Source CodeBy OneWhoSighs in WarRock - International Hacks
    20Last post 18y ago
  • HALO 2 (XBOX) Source CodeBy mirelesmichael in General Game Hacking
    12Last post 20y ago

Tags for this Thread

None