Results 1 to 2 of 2
  1. #1
    ramiro2016's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    Algeria
    Posts
    5
    Reputation
    10
    Thanks
    8

    Exclamation Bypassing XIGNCODE3 >> I have the addresse of x3.xem

    Hello, 1st sorry 4 my bad eng

    I wanna Bypass XIGNCODE3 of a game I have, but I d'ont know how to obtain the exact address to kill xigncode before it starts

    This is an image from OllyDbg:



    Please, Share any idea you have !

    thanks

    ---------
    I did Put a
    mov eax,1
    Retn
    At 4aa2c0



    but xigncode3 detect it; i use this dll :

    Code:
    #include <Windows.h>
     
    DWORD dwXignInitFnc = 0x004AA2C0;
     
    BOOL WriteBytes(DWORD dwAddress, LPBYTE lpBuffer, DWORD nBytes) {
    	if (nBytes == 0) {
    		OutputDebugString(L"WriteBytes:: Tried to write 0 bytes to memory.");
    		return FALSE;
    	}
    	DWORD dwOldProtect;
    	if (!VirtualProtect((LPVOID)dwAddress, nBytes, PAGE_EXECUTE_READWRITE, &dwOldProtect)) {
    		OutputDebugString(L"WriteBytes:: Failed to change access protection on memory address.");
    		return FALSE;
    	}
    	memcpy((LPVOID)dwAddress, lpBuffer, nBytes);
    	if (!VirtualProtect((LPVOID)dwAddress, nBytes, dwOldProtect, &dwOldProtect)) {
    		OutputDebugString(L"WriteBytes:: Failed to change access protection on memory address.");
    		return FALSE;
    	}
     
    	return TRUE;
    }
     
    BOOL StopXignInit() {
    	/*
    	Modify code to:
    	mov eax, 1
    	ret
    	nop
    	*/
    	return WriteBytes(dwXignInitFnc, (PBYTE)"\xB8\x01\x00\x00\x00\xC3\x90", 9);
    }
     
    BOOL APIENTRY DllMain(__in HINSTANCE hInstance, __in DWORD fdwReason, __in __reserved LPVOID lpReserved) {
    	UNREFERENCED_PARAMETER(lpReserved);
    	if (fdwReason == DLL_PROCESS_ATTACH) {
    		if (StopXignInit()) {
    			OutputDebugString(L"Successfully stopped XIGNCODE3 from initializing!");
    		}
    		else {
    			OutputDebugString(L"Failed to stop XIGNCODE3 from initializing!");
    		}
    	}
    	return TRUE;
    }
    then i search for the callers, and I found this:



    Please What is next !!

    the complete screen image is here:

    Last edited by ramiro2016; 06-23-2016 at 09:25 AM.

  2. #2
    ramiro2016's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    Algeria
    Posts
    5
    Reputation
    10
    Thanks
    8
    Any Suggestions !!!!!!!

Similar Threads

  1. [Help] Hounds The Last Hope - Bypass XIGNCODE3
    By julioup in forum Anti-Cheat
    Replies: 3
    Last Post: 03-04-2018, 11:37 PM
  2. [Solved] Anybody Have The Latest Data Validation Address?
    By aresdGHERhgerdherhrh in forum Call of Duty Advanced Warfare Help
    Replies: 4
    Last Post: 05-02-2015, 07:53 PM
  3. Anyone have the bypass
    By porygonzx in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 12-09-2008, 07:17 PM
  4. lol i dont have the guts but i dare you too...
    By jeremywilms in forum WarRock - International Hacks
    Replies: 16
    Last Post: 06-11-2006, 10:12 PM
  5. anyone have the new runnable for 06-02-06!!!!!!!!
    By AssasinZ in forum Gunz General
    Replies: 11
    Last Post: 02-07-2006, 07:56 PM