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

    Exclamation XIGNCODE3 start address problem >>> I have x3.xem adresse

    Hello, 1st sorry 4 my bad eng

    I wanna Bypass XIGNCODE3 of a game I have, but I don't 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:



    I attached the dumped file of the game !



    https://virustotal.com/en/file/04967...is/1467099008/
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Hero; 06-28-2016 at 01:30 AM.

  2. The Following 7 Users Say Thank You to ramiro2016 For This Useful Post:

    brandonturria (02-02-2017),Ehtirm (09-09-2017),karrizmaumut (06-25-2016),kkm199851 (12-12-2016),noppakaoakao (06-25-2016),sarayutTHAI (12-22-2016),zerosync (06-27-2016)

  3. #2
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    @ramiro2016, what game are you exactly referring to?

    /Moved to the correct section.
    Last edited by Hunter; 06-23-2016 at 10:15 AM.

  4. #3
    ramiro2016's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    Algeria
    Posts
    5
    Reputation
    10
    Thanks
    8
    Anyone, the file is attached !!
    I need to bypass this Anti cheat (XIGNCODE)
    Last edited by ramiro2016; 06-23-2016 at 04:31 PM.

Similar Threads

  1. Computer start up problem
    By Hadouken in forum Hardware & Software Support
    Replies: 1
    Last Post: 05-02-2011, 03:14 AM
  2. [HELP] MAKING NEW START UP - PROBLEM!
    By bo76 in forum Combat Arms Mod Discussion
    Replies: 4
    Last Post: 04-25-2010, 07:31 PM
  3. Starting Game Problem
    By clashbanger101 in forum Combat Arms Help
    Replies: 0
    Last Post: 11-26-2009, 01:51 PM
  4. CA Start up problem..plz help..plz plz plz
    By shuka1 in forum Combat Arms Hacks & Cheats
    Replies: 7
    Last Post: 07-16-2009, 11:50 AM
  5. combat arms start up problem.. :@
    By XxbluhhxX in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 04-13-2009, 03:39 PM

Tags for this Thread