Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > Wolfteam
You last visited: Today at 14:19

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

Advertisement



[CODE/AG/EN] XINGCODE3 Bypass

Discussion on [CODE/AG/EN] XINGCODE3 Bypass within the Wolfteam forum part of the Shooter category.

Reply
 
Old   #1
 
.Potzi™'s Avatar
 
elite*gold: 3
Join Date: Jul 2012
Posts: 248
Received Thanks: 31
[CODE/AG/EN] XINGCODE3 Bypass

ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ ϟ

Code:
PBYTE FindStartOfFunc(PBYTE Addy)
{
	if (!Addy) return Addy;
	while (true) if (compare((PBYTE)"\x55\x8B\xEC", "xxx", Addy--)) return ++Addy;
}

PBYTE FindPush(PBYTE sig, PCHAR mask, DWORD dwBase, DWORD dwLen)
{
	if (!dwBase) return nullptr;
	BYTE PushSig[5] = { 0x68, 0, 0, 0, 0 };
	*(PDWORD)(&PushSig[1]) = FindSignature(sig, mask, dwBase, dwLen, 0);
	if (*(PDWORD)(&PushSig[1]) == NULL) return NULL;
	return (PBYTE)FindSignature(PushSig, "xxxxx", dwBase, dwLen, 0);
}

bool bTriggered = false, bSuccess = false;
void bypass()
{
	DWORD dwCShell = FindCShell();
	if (dwCShell != NULL)
	{
		PBYTE BypassSig = FindPush((PBYTE)"XIGNCODE", "xxxxxxxxx", dwCShell, 5000000);
		if (BypassSig != nullptr)
		{
			PBYTE BypassFunc = FindStartOfFunc(BypassSig);
			if (BypassFunc && !memcmp(BypassFunc, (PBYTE)"\x55\x8B\xEC", 3))
			{
				Wrt((PBYTE)BypassFunc, (PBYTE)"\xB0\x01\xC3", 3);
				bSuccess = true;
			}
		}
	}
	bTriggered = true;
}
cBreakpoint* bp = NULL;
PBYTE pcheck = 0;
LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS* e)
{
	if (e->ExceptionRecord->ExceptionCode != EXCEPTION_SINGLE_STEP) return EXCEPTION_CONTINUE_SEARCH;
	if (e->ContextRecord->Eip == (DWORD)pcheck)
	{
		e->ContextRecord->Esp -= 4;
		*(PDWORD)(e->ContextRecord->Esp) = e->ContextRecord->Eip + 0x2;

		e->ContextRecord->Eip = e->ContextRecord->Edx;
		bypass();
		return EXCEPTION_CONTINUE_EXECUTION;
	}
	return EXCEPTION_CONTINUE_SEARCH;
}

void Start()
{
	Sleep(1000);
	AntiHWIDBan();
	while (pcheck == nullptr)
	{
		Sleep(30);
		pcheck = FindPush((PBYTE)"DIRECTSHOW\x00", "xxxxxxxxxx", (DWORD)GetModuleHandleA("wolfteam.bin"), 5000000);
	}
	pcheck -= 2;
	bp = new cBreakpoint(ExceptionHandler);
	bp->SetBP((DWORD)pcheck);
	while (!bTriggered) Sleep(1000);
	delete bp;
}
BOOL APIENTRY DllMain(HMODULE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved)
{
	if (ul_reason_for_call == DLL_PROCESS_ATTACH)
	{
		//int iStaticModule = MessageBoxA(0, "Static CShell/Obj?", "", MB_YESNO);
		//if (iStaticModule == IDYES) Hook((PBYTE)GetProcAddress(GetModuleHandleA("kernel32"), "GetTempFileNameA"), (PBYTE)&xGetTempFileNameA, 5);
		HANDLE hThread = CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)&Start, NULL, NULL, NULL);
		if (hThread != NULL) CloseHandle(hThread);
	}
	return TRUE;
}
.Potzi™ is offline  
Old 02/28/2015, 20:25   #2
 
C0RE''s Avatar
 
elite*gold: 40
Join Date: Mar 2013
Posts: 1,396
Received Thanks: 778
Wenn das wirklich funktionieren sollte warum dann der Release?
C0RE' is offline  
Old 02/28/2015, 21:31   #3
 
.Potzi™'s Avatar
 
elite*gold: 3
Join Date: Jul 2012
Posts: 248
Received Thanks: 31
Würdes es nicht funktionieren, würde ich mir doch nicht die Mühe machen und es hier veröffentlichen.

//RD
.Potzi™ is offline  
Old 02/28/2015, 21:43   #4
 
C0RE''s Avatar
 
elite*gold: 40
Join Date: Mar 2013
Posts: 1,396
Received Thanks: 778
Ich zweifle nicht an der funktionalität sonder warum du es veröffentlichst?
C0RE' is offline  
Old 02/28/2015, 22:08   #5
 
elite*gold: 0
Join Date: Jan 2015
Posts: 247
Received Thanks: 28
Quote:
Ich zweifle nicht an der funktionalität sonder warum du es veröffentlichst?
(falls es funktioniert).... core es giebt auch leute die gern mal was releasen ohne gleich geld zu kassieren?
ElswordHackerAgain! is offline  
Thanks
2 Users
Old 02/28/2015, 23:59   #6
 
MaBarker's Avatar
 
elite*gold: 274
Join Date: Jun 2012
Posts: 4,523
Received Thanks: 434
Quote:
Originally Posted by ElswordHackerAgain! View Post
(falls es funktioniert).... core es giebt auch leute die gern mal was releasen ohne gleich geld zu kassieren?
Siehe auch Warrock Szene dort gibt es viele Code releases sowie public addylogger etc.
Ausserdem sind die leute dort ansich auch sehr hilfsbereit
Obs geht weis ich nicht ist aber ein versuch wert ^^
MaBarker is offline  
Old 03/01/2015, 00:25   #7
 
M4L1F1C's Avatar
 
elite*gold: 156
Join Date: Feb 2015
Posts: 95
Received Thanks: 103
ALLOT of not needed code, well this entire thing is worthless since it only removes the startup screen of xigncode.

Goodluck bypassing heartbeat
M4L1F1C is offline  
Thanks
3 Users
Old 03/01/2015, 02:34   #8
 
.Potzi™'s Avatar
 
elite*gold: 3
Join Date: Jul 2012
Posts: 248
Received Thanks: 31
Quote:
Originally Posted by M4L1F1C View Post
ALLOT of not needed code, well this entire thing is worthless since it only removes the startup screen of xigncode.

Goodluck bypassing heartbeat
You've got a lot of '****' clue friend.

//RD
.Potzi™ is offline  
Old 03/03/2015, 18:52   #9


 
iMostLiked's Avatar
 
elite*gold: 1337
Join Date: Apr 2013
Posts: 6,485
Received Thanks: 3,190
Lol.



iMostLiked is offline  
Thanks
1 User
Old 03/03/2015, 20:38   #10
 
.Potzi™'s Avatar
 
elite*gold: 3
Join Date: Jul 2012
Posts: 248
Received Thanks: 31
Guck dir den Code weiter unten an.

Falls du darauf hinaus willst, dass ich ihn selber geschrieben habe, nein habe ich nicht. Hab vergessen erwähnen, dass es nur kopiert ist.
.Potzi™ is offline  
Old 03/03/2015, 21:13   #11
 
elite*gold: 0
Join Date: Mar 2010
Posts: 2,931
Received Thanks: 1,858
Könnt ihr noobs mal Heartbeat emulieren undso?
Ⓜiku Ⓗatsune is offline  
Old 03/04/2015, 14:22   #12
 
Vexallus's Avatar
 
elite*gold: 5
Join Date: Nov 2014
Posts: 330
Received Thanks: 621
u dont even need to bypass xigncode , just bypass it's detection list and u are done ...
Vexallus is offline  
Old 03/04/2015, 16:19   #13
 
elite*gold: 0
Join Date: Mar 2010
Posts: 2,931
Received Thanks: 1,858
Quote:
Originally Posted by D4rkAdv3rs4ry View Post
u dont even need to bypass xigncode , just bypass it's detection list and u are done ...
but but c.e?
Ⓜiku Ⓗatsune is offline  
Old 03/05/2015, 11:42   #14
 
Vexallus's Avatar
 
elite*gold: 5
Join Date: Nov 2014
Posts: 330
Received Thanks: 621
Talking

Quote:
Originally Posted by Ⓩone View Post
but but c.e?
It's easy to use C.E in wolfteam if you've bypassed a couple of things , WinLicense is not the best protecter anyway ...

Can be unpacked easily using a dumper & Decrypter [if u are welling to read the functions using ollydbg.. ]

Btw , here is the heartbeat check link & other needed stuff...:

Vexallus is offline  
Old 03/05/2015, 14:43   #15
 
elite*gold: 0
Join Date: Apr 2014
Posts: 7
Received Thanks: 0
wie kan man dissen bypass verwenden habe über sowas keinen plan also wass ich mit den code anfangen soll und wass ich machen muss
joannis4861 is offline  
Reply


Similar Threads Similar Threads
Special Force 2 - XINGCODE3 Bypass + Aimbot Request
02/11/2014 - Soldier Front - 5 Replies
Hello. I'm new in this forum and I came here for download working and undct. Aimbot for S.K.I.L.L Special Force 2 game or XINGCODE3 Bypass working fine now.. Anyone know's where I can get it.. ? I'm really need this hack.. My friend Have the VIP hack but I won't pay for it.... Please help me. I know only how to block Xingcode, but when I do it, the sf2.exe process will turn off about 3/4 minutes...
How to code A Bypass?
02/19/2013 - S4 League - 1 Replies
-
XINGCODE3 BYPASS ?
11/22/2012 - Alliance of Valiant Arms - 1 Replies
hello guys can i ask you anyone knows how to bypass xingcode3?:o
Is there a way to bypass Image Ver Code?
04/24/2007 - Silkroad Online - 2 Replies
I've heard that there is a way to bypass it. Is there a way? Cuz it would really be helpful. I always get disconnected at 11:00PM and I cant go back on that late -.- . It would be really helpful it can auto-log me back in without me having to type in the ver code



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


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.