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 › Programming › C++/C Programming › DLL Injection Hacking C++

DLL Injection Hacking C++

Posts 1–8 of 8 · Page 1 of 1
SC
scriptkiddy
DLL Injection Hacking C++
Hey guys, I want to start contributing hacks to this community, but here is the only problem:

I have been programming for 2 years now. I have just moved from C# to C++ about 4 months ago, and I am loving every aspect of C++. I have made use of several functions, including DirectX and GetAsyncKeyState. I want to start learning about DLLs, because one day I hope to learn how to inject DLLs into processes to edit some program structures.

Can anybody recommend me a good book about DLL's(mainly DLL injection) I am dedicated and I know that this is a difficult process. I am not one of those noobs who expect to learn everything in one week, because I know that it will probably take a year or so to master, but I just really want to know how to do it.

So can anybody recommend me any great DLL books/hacking




If there are any pro DLL hackers here, where did you start?


Thank you for your time.
#1 · 16y ago
why06
why06
I don't think .dll's will take a year to master. The DLLMain functions is in the Windows API <windows.h>. If you already are experienced with C++ you are well on your way.

I believe the general form is something like this
Code:
bool APIENTRY DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	switch(dwReason)
	{
	case DLL_PROCESS_ATTACH:
// 3 other cases, I forget what they are.
But like I said if your already experienced in C++ learning this shouldn't take much time at all. You just need to do a little reading on the Windows API is all.

HD is good at using DLL's for hacks he might give you a little more advice, and strangely enough zeco is canadian too and I think he's trying learn parts of the API as well.

In the mean time let's see what I've got in my bag of tricks:
http://www.relisof*****m32nie.html
http://bobobobo.*********.com/2008/0...c-window-in-c/
And ofcourse... MSDN
#2 · edited 16y ago · 16y ago
Hell_Demon
Hell_Demon
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hDll); // disabled the DLL_THREAD_ part =) will need this for most games else u could crash
case DLL_PROCESS_DETACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
#3 · 16y ago
LE
LegendaryAbbo
Read through Azorbix starter kit
#4 · 16y ago
Hell_Demon
Hell_Demon
I will write an in-depth tutorial on gamehacking with Dll's as soon as im bored, which should be sometime this weekend(ill use AssaultCube as exame since its opensource).
#5 · 16y ago
SC
scriptkiddy
Quote Originally Posted by legendaryhack View Post
Read through Azorbix starter kit
Where can I get that? I cant find it in search, and

D3D is the way to go?
Any good books or articles that tell you how to hack using D3D? not how to make games with it
#6 · 16y ago
Disturbed
[MPGH]Disturbed
Azorbix starter kit - Google Search

Well THAT was hard.

And it is a d3d starter kit.
#7 · 16y ago
ZE
zeco
Quote Originally Posted by xdiducktapex View Post
Azorbix starter kit - Google Search

Well THAT was hard.

And it is a d3d starter kit.
Did you even check the results?

Where to find it isn't immediately visible -.-
#8 · 16y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • Can Not Inject DLL ( PUB HACK )By Co0k1e_J4R in Combat Arms Hacks & Cheats
    2Last post 17y ago
  • help with dll in hack!By bldymarien in C++/C Programming
    0Last post 18y ago
  • Crash at Dll injectBy CyberStriker in WarRock - International Hacks
    1Last post 18y ago
  • [Help!] CA crash on dll injectBy CyberStriker in Combat Arms Hacks & Cheats
    9Last post 18y ago
  • DLL injection FailledBy aynal in WarRock - International Hacks
    1Last post 20y ago

Tags for this Thread

#dll#hacking#injection