Results 1 to 15 of 16

Threaded View

  1. #1
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic

    *Four Delta One aCI3.dll dump & Bypass*



    Make sure HOOK_Anticheat() is called as soon as game starts.


    Code:
    #include "StdAfx.h"
    
    
    BOOL NP_SendRandomString( CONST PCHAR Text )
    {
        static HMODULE hLibnp = GetModuleHandleA( "libnp.dll" );
    
    
        if( !hLibnp )
        {
            return FALSE;
        }
    
    
        static DWORD dwCall = (DWORD)GetProcAddress( hLibnp, "NP_SendRandomString" );
    
    
        __asm
        {
            push Text
            call dwCall
            add esp, 4h
        }
    
    
        return TRUE;
    }
    
    
    VOID SendStatus()
    {
        while( true )
        {
            NP_SendRandomString( "troll 50001" );
    
    
            Sleep( 5000 );
        }
    }
    
    
    CDETOUR aCI_RunHook;
    BOOLEAN aCI_Run()
    {
        static HANDLE hThread = NULL;
        if( !hThread )
        {
            hThread = CreateThread( NULL, NULL, ( PTHREAD_START_ROUTINE )SendStatus, NULL, NULL, NULL );
        }
    
    
        return true;
    }
    
    
    BOOL PatchCI_CoreChecks()
    {
        HMODULE hIW5M = GetModuleHandleA("iw5m.dll");
    
    
        if( !hIW5M )
        {
            return FALSE;
        }
    
    
        DWORD dwModuleSize = Util.GetModuleSize( hIW5M );
    
    
        if( !dwModuleSize )
        {
            return FALSE;
        }
    
    
        DWORD dwCoreCIChecks = Util.FindCodeStylePattern( ( DWORD )hIW5M, dwModuleSize, ( PBYTE )"\x55\x8B\xEC\x83\xEC\x40\x53\x56\x57\x6A\x00\xE8\x00\x00\x00\x00\x83\xC4\x04\x50\xE8\x00\x00\x00\x00\x83\xC4\x04\xE8\x00\x00\x00\x00\x99", "xxxxxxxxxxxx????xxxxx????xxxx????x" );
        
        if( !dwCoreCIChecks )
        {
            return FALSE;
        }
    
    
        if( Util.PatchBytes( dwCoreCIChecks, "\xC3", 1 ) == FALSE )
        {
            return FALSE;
        }
    
    
        return TRUE;
    }
    
    
    BOOL PatchCI_ModuleRun()
    {
        HMODULE hLibnp = GetModuleHandleA( "libnp.dll" );
    
    
        if( !hLibnp )
        {
            return FALSE;
        }
    
    
        DWORD dwModuleSize = Util.GetModuleSize( hLibnp );
    
    
        if( !dwModuleSize )
        {
            return FALSE;
        }
    
    
        DWORD dwCIModuleRun = Util.FindCodeStylePattern( ( DWORD )hLibnp, dwModuleSize, (PBYTE)"\x55\x8B\xEC\x83\xEC\x5C\xA1", "xxxxxxx" );
    
    
        if( !dwCIModuleRun )
        {
            return FALSE;
        }
    
    
        aCI_RunHook.Initiliaze( dwCIModuleRun, aCI_Run, DETOUR_TYPE_JMP, 6 );
        aCI_RunHook.InstallDetour();
    
    
        return TRUE;
    }
    
    
    
    
    VOID HOOK_Anticheat()
    {
         if( !PatchCI_CoreChecks() || !PatchCI_ModuleRun()  )
         {
             Print( "Warning: Unable to patch aCI3" );
         }
    }
    [/CODE]
    CRD by: baberzz
    Last edited by COD3RIN; 06-29-2013 at 07:46 AM.
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



Similar Threads

  1. Four Delta One wall hack please ;-;
    By So quero o hack in forum Call of Duty Modern Warfare 3 Help
    Replies: 2
    Last Post: 12-08-2012, 09:14 AM
  2. [Solved] 4D1(four Delta one) help error when map is loaded fully I get errors
    By Vincent Dominguez in forum Call of Duty Modern Warfare 2 Help
    Replies: 3
    Last Post: 07-30-2012, 03:11 PM
  3. In Regards to Four Delta One
    By Tetsuya in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 3
    Last Post: 06-16-2012, 10:02 AM
  4. [Help] Four Delta One wallhack
    By josiprakas in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 1
    Last Post: 04-25-2012, 05:30 AM
  5. Four Delta One Offsets
    By laazyboy13 in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 3
    Last Post: 04-24-2012, 02:52 AM