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 Europe Hacks › Combat Arms EU Hack Coding/Source Code › [Request]Injector Tutorial

Post[Request]Injector Tutorial

Posts 1–6 of 6 · Page 1 of 1
noleash
noleash
[Request]Injector Tutorial
Hey guys, I'd like to release my own injector, and I was wondering if is there any tutorial on how to create my own injector in mpgh, a source code or something?

Thanks in advance

PS. Is this one still working? I used the search option...
#1 · edited 16y ago · 16y ago
Kuro Tenshi
Kuro Tenshi
use the search button and then @ VB section typ:
injector tutorails

or

injector source
#2 · 16y ago
SC
schim
If VB is to easy for you try C++:

Code:
#include <iostream>
#include <windows.h>
#include <string>
using namespace std;

struct dll{
char dp[_MAX_PATH];
char windowname[_MAX_PATH];
};


int main(){
 HWND hwnd;
 HANDLE hproc;
 HANDLE htread;
 DWORD dwpid = 1;
 DWORD hmodule;
 HINSTANCE hk32 = LoadLibrary( TEXT("kernel32.dll"));
 void *praddres;
 dll d= { "C:\\TestDLL.dll", "SpellForce 2" }; // edit your dll path and your procces here
 hwnd = FindWindowA(NULL, d.windowname);
 GetWindowThreadProcessId(hwnd, &dwpid);
 hproc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, dwpid);
 praddres = VirtualAllocEx( hproc, NULL, sizeof(d.dp), MEM_COMMIT | MEM_RESERVE, 0x40 );
 WriteProcessMemory( hproc, praddres, (void*)d.dp, sizeof(d.dp), NULL);
 htread = CreateRemoteThread( hproc, NULL, 0,(LPTHREAD_START_ROUTINE) GetProcAddress( hk32, "LoadLibraryA" ),praddres, 0, NULL );
 WaitForSingleObject( htread, INFINITE );
 GetExitCodeThread( htread, &hmodule );
 CloseHandle( htread );
 VirtualFreeEx( hproc, praddres, sizeof(d.dp), MEM_RELEASE );
 cout<<"Done\n";
 cin.ignore();
 return 0;
}
It doesn't work for CA tough, but it should give you the idea
#3 · 16y ago
noleash
noleash
Ok, thanks guys, I'm gonna try making my own injector now
#4 · 16y ago
aLcohoL_95
aLcohoL_95
yeah i think this injector is still working
#5 · 16y ago
AeroMan
AeroMan
Awomse
I like that code
#6 · 16y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • [TUT](REQUEST) VB 2008 injector tutorialBy No5cope in Visual Basic Programming
    8Last post 16y ago
  • Requesting: Hacking TutorialBy AthlaS in Hack Requests
    1Last post 20y ago
  • [REQUEST]trainer tutorialBy kanym in WarRock - International Hacks
    3Last post 19y ago
  • <Request> Photoshop TutorialsBy Calderon in Hack Requests
    0Last post 18y ago
  • (Request) A tutorial on how to extract addresses from trainersBy englishpom in WarRock - International Hacks
    9Last post 19y ago

Tags for this Thread

None