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 › Blackshot Hacks & Cheats › Bypass For Blackshot [Source Code] [C++ Knowledge] With TuT

Bypass For Blackshot [Source Code] [C++ Knowledge] With TuT

Posts 1–15 of 138 · Page 1 of 10
…
BI
bigbaang12
how to open the C++ me newbie#
#1 · 13y ago
MA
Maroon5.
Quote Originally Posted by bigbaang12 View Post
how to open the C++ me newbie#
Download First .
#2 · 13y ago
chowei
chowei
I don't get it at all -_-
#3 · 13y ago
MA
Maroon5.
Quote Originally Posted by chowei View Post
I don't get it at all -_-
Do you mean not understand ?
. just read it slow and carefully . Sure you will understand


---------- Post added at 06:33 PM ---------- Previous post was at 06:32 PM ----------

Learning c++ is not a simple as you see . i tooks time to understand all of the Component , Function
#4 · 13y ago
COD3RIN
COD3RIN
Great job maroon5

---------- Post added at 06:41 PM ---------- Previous post was at 06:35 PM ----------

Process hacker is detected once you run the bs
#5 · 13y ago
BI
bigbaang12
The C++ is Microsoft Visual Studio?
#6 · 13y ago
GE
GEHhgerhgerhgerhrhr
Quote Originally Posted by Maroon5. View Post
Hello Guys . I know now days Blackshot can't Use C.E [Cheat Engine]
I'm here to solve the problem . Here some of my Source Code From MAT Section .
It's From Group of mine .
First thing you need to know what is C++ :

 
C++
C++ (pronounced "see plus plus") is a statically typed, free-form, multi-paradigm, compiled, general-purpose programming language. It is regarded as an intermediate-level language, as it comprises both high-level and low-level language features. Developed by Bjarne Stroustrup starting in 1979 at Bell Labs, C++ was originally named C with Classes, adding object oriented features, such as classes, and other enhancements to the C programming language. The language was renamed C++ in 1983, as a pun involving the increment operator.
C++ is one of the most popular programming languages and is implemented on a wide variety of hardware and operating system platforms. As an efficient compiler to native code, its application domains include systems software, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and proprietary C++ compiler software, including the GNU Project, Microsoft, Intel and Embarcadero Technologies. C++ has greatly influenced many other popular programming languages, most notably C# and Java. Other successful languages such as Objective-C use a very different syntax and approach to adding classes to C.
C++ is also used for hardware design, where the design is initially described in C++, then analyzed, architecturally constrained, and scheduled to create a register-transfer level hardware description language via high-level synthesis.
The language began as enhancements to C, first adding classes, then virtual functions, operator overloading, multiple inheritance, templates and exception handling, among other features. After years of development, the C++ programming language standard was ratified in 1998 as ISO/IEC 14882:1998. The standard was amended by the 2003 technical corrigendum, ISO/IEC 14882:2003. The current standard extending C++ with new features was ratified and published by ISO in September 2011 as ISO/IEC 14882:2011 (informally known as C++11).


Requirement:
C++
Net.framework 4.5 [For Support]
Process Hacker [If Patched Gameguard, Can Find new one]
Microsoft DirectX 9.0 SDK (Summer 2004)

Here the Complete Code :
Code:
#include <windows.h>

#include <stdio.h>


BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};
BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};

DWORD Maroon5_Hack = 0;
LPTSTR Maroon5 = "Blackshot.exe";

void Patch(void *adr, void *ptr, int size)
{
DWORD NewProtection;
VirtualProtect(adr,size,PAGE_EXECUTE_WRITECOPY, &NewProtection);
memcpy(adr,ptr,size);
VirtualProtect(adr,size,NewProtection, &NewProtection);
}


DWORD WINAPI LoopFunction(LPVOID param)
{
while (1) {

if (GetAsyncKeyState(VK_END)&1)
{
DWORD MPGH = (DWORD)GetModuleHandleA(Maroon5);
{
if (MPGH > 0) {
Maroon5_Hack = MPGH + 0x950000;    //npsc.des | 0x950000 | 228KB | nProtect SpeedCheck ModulePatch((void *)(Maroon5_Hack),(void*)(PBYTE)RubahByte, 6);
Sleep(100);
Patch((void *)(Maroon5_Hack),(void*)(PBYTE)ByteAsli, 6);
}
Sleep(10);
} 
}
}
return (0);
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if (dwReason == DLL_PROCESS_ATTACH) { 
CreateThread(0, 0, LoopFunction, 0, 0, 0);
}
return TRUE;
}
TuT Begins:
Let me Explain of it :
Code:
#include <windows.h>

#include <stdio.h>
This code Includes Windows Process

Code:
BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
This is a byte from a Gameguard Process . 0xFF , 0x68 is MAT Gameguard Process .
you'll need to change it to Blackshot gameguard process byte .
Blackshot byte is : 0x950000
I don't know if it still working . so you need to change the process byte From :
[CODE]
Code:
BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x68};
To :
[CODE]
Code:
BYTE ByteAsli[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};
BYTE RubahByte[6] = {0x00, 0x00, 0x00, 0x00, 0xFF, 0x95};
Note :
0x68 : MAT Gameguard . Don't be a careless
0x95 : Bs Gameguard

And Lastly :
Code:
DWORD Maroon5_Hack = 0;
LPTSTR Maroon5 = "Blackshot.exe";

void Patch(void *adr, void *ptr, int size)
{
DWORD NewProtection;
VirtualProtect(adr,size,PAGE_EXECUTE_WRITECOPY, &NewProtection);
memcpy(adr,ptr,size);
VirtualProtect(adr,size,NewProtection, &NewProtection);
}


DWORD WINAPI LoopFunction(LPVOID param)
{
while (1) {

if (GetAsyncKeyState(VK_END)&1)
{
DWORD MPGH = (DWORD)GetModuleHandleA(Maroon5);
{
if (MPGH > 0) {
Maroon5_Hack = MPGH + 0x4C778F;    
((void *)(Maroon5_Hack),(void*)(PBYTE)RubahByte, 6);
Sleep(100);
Patch((void *)(Maroon5_Hack),(void*)(PBYTE)ByteAsli, 6);
}
Sleep(10);
} 
}
}
return (0);
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if (dwReason == DLL_PROCESS_ATTACH) { 
CreateThread(0, 0, LoopFunction, 0, 0, 0);
}
return TRUE;
}
This One "Maroon5_Hack = MPGH + 0x4C778F;
((void *)(Maroon5_Hack),(void*)(PBYTE)RubahByte, 6);
Sleep(100);
Patch((void *)(Maroon5_Hack),(void*)(PBYTE)ByteAsli, 6);
"
"0x4C778f" is MAT Byte
"0x950000" is Bs byte . So Change it .
TuT End

Compile it Using C++ :
Open C++
Click New Project
Choose "Empty Project"
Rename Project
Click "Ok"
Click On "Solution Explorer Window" should be on right
Click your Project name
Right click it
Choose properties [ A New Window should pop-up]
Click on general tab
Find "Configuration Type" change the "Application (.exe)" To "Dynamic Library (.dll)"
Then click "Vc++ directories"
click on "include directory" Click new "edit' then find a File name "Microsoft DirectX 9.0 SDK"
Then choose "includes" Folder
click Ok
Then find "Library directories" click new "edit" then find a file name "Microsoft DirectX 9.0 SDK"
Then choose "Lib" Folder
click Ok
Go to your "solution explorer"
and Right click on "Source File"
click add item
then new item
Click on ".ccp" File
change the name to "Main.ccp"
Simply Paste the complete code from me
Then compile it
Done .

Note2:
Inject the dll and press "Home"
It will automaticly bypass

HowTo:
Open x1Inject
Open Bs
text in the "Blackshot.exe" in x1inject
and Tick "Auto Inject"
Start Bs
Click "Home"
After bypassing
Inject your dll
or Play around using C.E
Done

Whew ! That is a long TuT
Should Thanks me ! .

Hotkeys:
Home [Auto bypass]

Note3:
Do not leech my project

Credits :
@XPS Hacking [Bypass Idea]
@Maroon5.
[Author of Blackshot bypass source Code]
I am A vb/C++ Expert
So don't worry

Note4:
If the Code patched . Edit the Byte of Bypass .Find npsc.des [On Process Hacker]nProtect SpeedCheck Module
Make sure you Inject the dll when blackshot just about to start

Note5:
This is a long tutorial . if you don't mind click thanks I have help you
typing all of this TuT is not easy

If it Usefull to Everyone . @Vehrdyn can make it Sticky ?
and i will start making Hacks For Blackshot
tested and work ? post screenshot
#7 · 13y ago
MA
Maroon5.
Quote Originally Posted by COD3RIN View Post
Great job maroon5

---------- Post added at 06:41 PM ---------- Previous post was at 06:35 PM ----------

Process hacker is detected once you run the bs
Close Process hacker Before Gameguard Shown up
#8 · 13y ago
DO
domquendo
Quote Originally Posted by COD3RIN View Post
Great job maroon5

---------- Post added at 06:41 PM ---------- Previous post was at 06:35 PM ----------

Process hacker is detected once you run the bs

Does this works for you?
#9 · 13y ago
MA
Maroon5.
Quote Originally Posted by Farah[Aisyah] View Post
tested and work ? post screenshot
I'd didn't say it works . I need one of you to test it LoL . cause i have used this along time ago
Bet it will works .
If patched . Do as i say
use process hacker to get new Byte


---------- Post added at 06:53 PM ---------- Previous post was at 06:53 PM ----------

Quote Originally Posted by domquendo View Post
Does this works for you?
Just wait and see . if work . make your promise
#10 · 13y ago
GE
GEHhgerhgerhgerhrhr
Quote Originally Posted by Maroon5. View Post


I'd didn't say it works . I need one of you to test it LoL . cause i have used this along time ago
Bet it will works .
If patched . Do as i say
use process hacker to get new Byte


---------- Post added at 06:53 PM ---------- Previous post was at 06:53 PM ----------



Just wait and see . if work . make your promise
@COD3RIN tester i think ..
#11 · 13y ago
MA
Maroon5.
Quote Originally Posted by Farah[Aisyah] View Post
@COD3RIN tester i think ..
I've just fix the Code . Lol
The code comes with "//"


---------- Post added at 06:58 PM ---------- Previous post was at 06:57 PM ----------

Quote Originally Posted by Farah[Aisyah] View Post
@COD3RIN tester i think ..
Leecher don't know how to compile it , even i has post the TuT ?
Dumb leecher
#12 · 13y ago
DO
domquendo
If it works for someone please post it!
#13 · 13y ago
MA
Maroon5.
Quote Originally Posted by domquendo View Post
If it works for someone please post it!
be patient / .
#14 · 13y ago
LU
lulzuh
Thanks working for me just needed to change something with process hacker can use all haxx now GG.
#15 · 13y ago
Posts 1–15 of 138 · Page 1 of 10
…

Post a Reply

Similar Threads

  • anyone help me for this source codeBy jojit_0024 in WarRock Hack Source Code
    20Last post 14y ago
  • I have a Problem with this>>can u make a bypass for this and download the source codeBy batusxai in Soldier Front General
    3Last post 13y ago
  • NEED BYPASS FOR BLACKSHOTBy zwanbenassi in Hack Requests
    7Last post 15y ago
  • I want to trade CD Ket stealer source code with bypass+scirpt+remote execBy petch2542 in DayZ Selling / Trading / Buying
    2Last post 13y ago
  • Trading my account LVL 40 + working bypass for a retail codeBy xWarr0ckx in Trade Accounts/Keys/Items
    36Last post 19y ago

Tags for this Thread

None