Register for your free account! | Forgot your password?

You last visited: Today at 14:04

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



XIGNCODE - Driver Bypass

Discussion on XIGNCODE - Driver Bypass within the Wolfteam Hacks, Bots, Cheats & Exploits forum part of the Wolfteam category.

Reply
 
Old   #1


 
iMostLiked's Avatar
 
elite*gold: 1337
Join Date: Apr 2013
Posts: 6,480
Received Thanks: 3,190
Arrow XIGNCODE - Driver Bypass

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 , 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++
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:

Instructions:
1.) Start "drvbp.exe" as admin
2.) Start Wolfteam
3.) Wait until the window shows "Bypassed", like this:




4.) Enjoy

Attached Files
File Type: rar drvbp.rar (8.6 KB, 557 views)
iMostLiked is offline  
Thanks
5 Users
Old 08/28/2017, 01:59   #2
 
PavexDesigns's Avatar
 
elite*gold: 0
Join Date: Aug 2017
Posts: 31
Received Thanks: 2
awesome work

thanks bro
PavexDesigns is offline  
Old 08/28/2017, 14:53   #3
 
killzone's Avatar
 
elite*gold: 100
Join Date: Mar 2006
Posts: 1,826
Received Thanks: 430
Any way to update this to work with different binary, per se Blade & Soul?
killzone is offline  
Old 08/28/2017, 15:26   #4


 
iMostLiked's Avatar
 
elite*gold: 1337
Join Date: Apr 2013
Posts: 6,480
Received Thanks: 3,190
Quote:
Originally Posted by killzone View Post
Any way to update this to work with different binary, per se Blade & Soul?
I've posted the method I use above.

Quote:
Originally Posted by iMostLiked View Post
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"
There's no guarantee that this will work for all games using xigncode, but I think it should.
iMostLiked is offline  
Thanks
1 User
Old 08/28/2017, 18:32   #5
 
elite*gold: 0
Join Date: Jun 2011
Posts: 20
Received Thanks: 1
Can u share source code of drvbp.exe ?
sakiriye is offline  
Old 08/28/2017, 19:59   #6


 
iMostLiked's Avatar
 
elite*gold: 1337
Join Date: Apr 2013
Posts: 6,480
Received Thanks: 3,190
Quote:
Originally Posted by sakiriye View Post
Can u share source code of drvbp.exe ?
No, I posted 90% of the source already above.

Quote:
Originally Posted by iMostLiked View Post
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"
You only have to detect the process id and you're done.. if you are going to use it for wolfteam then use the .exe I already compiled, otherwise you have to make your own thoughts.
iMostLiked is offline  
Thanks
1 User
Old 08/29/2017, 21:35   #7
 
leftspace's Avatar
 
elite*gold: 0
Join Date: Dec 2013
Posts: 9
Received Thanks: 2
its not bypass heartbeat dude (because xhunter1.sys not have heartbeat) its just disable xhunter1.sys start thats all.

xhunter1.sys using ObRegistercallback its Block your Process & Thread Access.
leftspace is offline  
Old 08/29/2017, 21:45   #8


 
iMostLiked's Avatar
 
elite*gold: 1337
Join Date: Apr 2013
Posts: 6,480
Received Thanks: 3,190
Quote:
Originally Posted by leftspace View Post
its not bypass heartbeat dude (because xhunter1.sys not have heartbeat) its just disable xhunter1.sys start thats all.

xhunter1.sys using ObRegistercallback its Block your Process & Thread Access.
Whether it bypasses heartbeat or not, the fact that you'll not be kicked after 5, 30 or even 600 minutes is true, so there's nothing disturbing you in searching through wolfteam's or other games' memory.
iMostLiked is offline  
Thanks
1 User
Old 01/26/2018, 18:59   #9
 
elite*gold: 0
Join Date: Jan 2018
Posts: 1
Received Thanks: 0
Seems to be detected, or? I'm getting kicked from server for using an illegal program (not x3 message, but ingame message). Using CrySearch.
yowfurry is offline  
Old 01/27/2018, 19:52   #10


 
iMostLiked's Avatar
 
elite*gold: 1337
Join Date: Apr 2013
Posts: 6,480
Received Thanks: 3,190
Quote:
Originally Posted by yowfurry View Post
Seems to be detected, or? I'm getting kicked from server for using an illegal program (not x3 message, but ingame message). Using CrySearch.
There's a chance that this got detected, but I don't know to 100%.
You can try doing nothing for 5 minutes, if you get kicked this is probably detected.
iMostLiked is offline  
Old 01/27/2018, 22:05   #11
 
__chkstk's Avatar
 
elite*gold: 902
Join Date: Jul 2012
Posts: 1,391
Received Thanks: 953
Quote:
Originally Posted by iMostLiked View Post
There's a chance that this got detected, but I don't know to 100%.
You can try doing nothing for 5 minutes, if you get kicked this is probably detected.
It can not break xigncode heartbeat, probably he gonna get kick after 5 minutes. But it does not make it detected. You can do a lot of **** in 5 minutes
__chkstk is offline  
Reply


Similar Threads Similar Threads
Xigncode Driver load function
01/18/2017 - S4 League Hacks, Bots, Cheats & Exploits - 6 Replies
Hello, it's as the tittle says ... this is a hint for da people who wanna try to make their own bypass or something so here is a hint... E8 ?? ?? ?? ?? Eb 02 33 c0 c6 45 fc 10 50 8d 4f 2c e8 ?? ?? ?? ?? a1 ?? ?? ?? ?? 8b 40 7c this function is the one responsible of driver-load so ... have fun with that.
Microsoft ODBC Driver Mangaer Driver
02/17/2013 - WarRock - 4 Replies
Wo kann ich Microsoft ODBC Driver Mangaer Treiber Downloaden ? falls jemand mir helfen will bitte per skype = thekingofff Wenn ich mein Server starten will kommt die meldung weitere infos per skype pls help ich finde die treiber nicht >.< Microsoft ODBC Driver
WTS XIGNCODE BYPASS ( NO XIGNCODE ) + HACKS
03/15/2012 - Dekaron Trading - 3 Replies
Selling my new bypass. this bypass will bring down xigncode protection so it wont load with game wich means no more xigncode uppdate/error and is perm! iam shipping it with CE cheat tables wich include vack hack, no agrro, teleport hack, speedhack, wall hack, zoom/fareye hack etc no skill/masspawn/pethack. pm offers :mofo:



All times are GMT +1. The time now is 14:04.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.