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 › Combat Arms Hack Coding / Programming / Source Code › Combat Arms Coding Help & Discussion › [Leeched] Hack Adresses/HackSheild Bypass

[Leeched] Hack Adresses/HackSheild Bypass

Posts 1–10 of 10 · Page 1 of 1
0H
0h3mg33
[Leeched] Hack Adresses/HackSheild Bypass
First some adresses.

Code:
#define NoReload 0x374BB8F4
#define GlassWalls 0x57276A
#define RPP 0x3785E018
#define TELE 0x3785E118
#define deviceptr 0x000008
#define ltclient 0x3781BE50
#define SuperBullets 0x374B65D6
#define RECOIL1 0x3746F630
#define RECOIL2 0x3745F489
#define RECOIL3 0x3746F644
#define RECOIL4 0x3746F647
#define RECOIL5 0x3746F650
#define GameStatus ????????
#define ptc1 0x484BC0
#define nametag1 ???????????
#define nametag2 0x373747AD
#define DrawPrim 0x000160
#define getplayerbyindex 0x3715DDB0
#define getlocalplayer 0x3715E770
#define clientinfomgr 0x3715E150
#define LTC 0x00485E10. 
#define LTB 0x3780CB90. 
#define ASUS 0x005727AA. 
#define PlayerInfo 0x378508C8. 
#define NoRecoil 0x3746955C. 
#define NoReload 0x374B54B4. 
#define Position 0x00066F34. 
#define SuperBullets 0x374B01B6. 
#define Engine_Nametags1 0x3736EFDC. 
#define Engine_Nametags2 0x3736EFC1. 
#define GetPlayerByIndex 0x3715DD50. 
#define GetLocalPlayer 0x3715E700. 
#define ulThis 0x37826780. 
#define BeastMode 0x37825EEC. 


This is the code to bypass the hackshield pro. This is quite old so you'll probally need to fix it a bit. Also you need the adress.


#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); 
}





Enjoy.
#1 · edited 15y ago · 15y ago
freedompeace
freedompeace
Great leech .
#2 · 15y ago
flameswor10
flameswor10
Nice leech. Some of the addies aren't even correct

0x???????
#3 · 15y ago
Sydney
Sydney
Quote Originally Posted by flameswor10 View Post
Nice leech. Some of the addies aren't even correct

0x???????
Sure 0x???????? is not right -.-

Maybe he just dont want to release the addie for some noobs.
#4 · 15y ago
CAFlames
CAFlames
u sure of nametags and beastmode???
#5 · 15y ago
why06jz
why06jz
Quote Originally Posted by D-Vid the DBag View Post

I didn't post a hack, source, etc to have to GIVE credits.
NextGen1 could you please explain this to me a little bit better?
Yeh, I'll explain it, since it's my rule. A number of people tend to copy and paste source code and spam the forum. Then they proceed by not explaining the code, and then further proceed by not giving any indication where the code was found. It's just like taking a quote out of a book my friend. If you keep copying everyone else's words and using them it's called plagiarism. MPGH does this same thing, but at a larger scale with hundreds of leechers posting code, which may seem good for you, but to the outside world makes all of MPGH look like plagiarizers. I have no problem with anyone posting code, but by exacting this rule it gives us better standing with hackers outside MPGH. If you can't take the 5 sec to credit the author then honestly we dont need it. You can see what ignoring this has done to the Hack forums, we don't have these problems in the programming forum.
#6 · 15y ago
ST
Stephen
Quote Originally Posted by why06jz View Post
Yeh, I'll explain it, since it's my rule. A number of people tend to copy and paste source code and spam the forum. Then they proceed by not explaining the code, and then further proceed by not giving any indication where the code was found. It's just like taking a quote out of a book my friend. If you keep copying everyone else's words and using them it's called plagiarism. MPGH does this same thing, but at a larger scale with hundreds of leechers posting code, which may seem good for you, but to the outside world makes all of MPGH look like plagiarizers. I have no problem with anyone posting code, but by exacting this rule it gives us better standing with hackers outside MPGH. If you can't take the 5 sec to credit the author then honestly we dont need it. You can see what ignoring this has done to the Hack forums, we don't have these problems in the programming forum.
Love you. <3
#7 · 15y ago
D-Vid the DBag
D-Vid the DBag
Quote Originally Posted by why06jz View Post
Yeh, I'll explain it, since it's my rule. A number of people tend to copy and paste source code and spam the forum. Then they proceed by not explaining the code, and then further proceed by not giving any indication where the code was found. It's just like taking a quote out of a book my friend. If you keep copying everyone else's words and using them it's called plagiarism. MPGH does this same thing, but at a larger scale with hundreds of leechers posting code, which may seem good for you, but to the outside world makes all of MPGH look like plagiarizers. I have no problem with anyone posting code, but by exacting this rule it gives us better standing with hackers outside MPGH. If you can't take the 5 sec to credit the author then honestly we dont need it. You can see what ignoring this has done to the Hack forums, we don't have these problems in the programming forum.
Well, just for your information...
I am NOT the OP to this thread.
So there's NO reason that I should be told to post credits.
#8 · 15y ago
0H
0h3mg33
I'm sorry I am new to this site :/ Can somebodsy tell me how to edit it so I can add credits?
#9 · 15y ago
WH
whit
Quote Originally Posted by 0h3mg33 View Post
I'm sorry I am new to this site :/ Can somebodsy tell me how to edit it so I can add credits?
Well its to late now the thread is 24 hours old.
But dont worry about it there just addies just cred next time
#10 · 15y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Tags for this Thread

None