-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned and renamed code to make it more understandable.
- Loading branch information
Showing
13 changed files
with
966 additions
and
897 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#pragma once | ||
|
||
namespace masterhide | ||
{ | ||
namespace globals | ||
{ | ||
// | ||
// Custom MAC Address | ||
// | ||
static UCHAR szFakeMAC[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0x01, 0x2 }; | ||
|
||
// | ||
// Custom HD Serial and Model | ||
// | ||
static char szFakeSerial[] = "XJEBA1973M2"; | ||
|
||
static char* szFakeModels[] = | ||
{ | ||
"Samsung EVO 970", | ||
//... | ||
}; | ||
|
||
// | ||
// Those drivers will not appear on drivers list | ||
// | ||
static char* szProtectedDrivers[] = | ||
{ | ||
"dbk64", | ||
"processhacker2", | ||
//... | ||
}; | ||
|
||
// | ||
// Those processes will not appear on process list or via window methods | ||
// | ||
static wchar_t* wsProtectedProcesses[] = | ||
{ | ||
L"cheatengine", | ||
L"ProcessHacker" | ||
//... | ||
}; | ||
|
||
// | ||
// Those processes will be monitored | ||
// | ||
static wchar_t* wsMonitoredProcesses[] = | ||
{ | ||
L"Tibia", | ||
//... | ||
}; | ||
|
||
// | ||
// Those processess will be blacklisted to query data on protect processes | ||
// | ||
static wchar_t* wsBlacklistedProcessess[] = | ||
{ | ||
L"Tibia", | ||
//... | ||
}; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.