Since there weren't much releases in last time I decided to post my driver bypass for xigncode. If you use this and an undetected memory scanner like CrySearch, you'll be able to scan wolfteam's memory without any problems. Cheat Engine doesn't work, if you want to use this with Cheat Engine, you have to download [Only registered and activated users can see links. Click Here To Register...], change a lot and compile it.
Note: This doesn't bypass the whole xigncode anti cheat system and you'll not be able to call d3d9 functions. It's only memory based. It does bypass Heartbeat. You won't get kicked after 5 minutes.
C++
Please don't ask me how to include this in your hack. I finished coding hacks for wolfteam 2 years ago, it's only a method I want to share with you. It does also work for other games that use xigncode.
-----
For the lazy ones:
Download: See attachment
VirusTotal: [Only registered and activated users can see links. Click Here To Register...]
Instructions:
1.) Start "drvbp.exe" as admin
2.) Start Wolfteam
3.) Wait until the window shows "Bypassed", like this:
[Only registered and activated users can see links. Click Here To Register...]
4.) Enjoy
[Only registered and activated users can see links. Click Here To Register...]
Note: This doesn't bypass the whole xigncode anti cheat system and you'll not be able to call d3d9 functions. It's only memory based. It does bypass Heartbeat. You won't get kicked after 5 minutes.
C++
Code:
bool DriverBypass(int pID)
{
HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, false, pID);
if (!hProcess) {
return false;
}
HMODULE hMod = LoadLibrary("advapi32.dll");
if (!hMod) {
return false;
}
LPVOID dwSSA = (LPVOID)GetProcAddress(hMod, "StartServiceA");
LPVOID dwOSW = (LPVOID)GetProcAddress(hMod, "OpenServiceW");
if (!dwSSA || !dwOSW) {
return false;
}
byte wByte[] = { 0xC2, 0x0C, 0x00 };
if (!WriteProcessMemory(hProcess, dwSSA, &wByte, sizeof(wByte), NULL)) {
return false;
}
if (!WriteProcessMemory(hProcess, dwOSW, &wByte, sizeof(wByte), NULL)) {
return false;
}
return true;
}
// int pID = process id of "Wolfteam.bin"
Please don't ask me how to include this in your hack. I finished coding hacks for wolfteam 2 years ago, it's only a method I want to share with you. It does also work for other games that use xigncode.
-----
For the lazy ones:
Download: See attachment
VirusTotal: [Only registered and activated users can see links. Click Here To Register...]
Instructions:
1.) Start "drvbp.exe" as admin
2.) Start Wolfteam
3.) Wait until the window shows "Bypassed", like this:
[Only registered and activated users can see links. Click Here To Register...]
4.) Enjoy
[Only registered and activated users can see links. Click Here To Register...]