Results 1 to 7 of 7
  1. #1
    llvengancell's Avatar
    Join Date
    May 2007
    Posts
    390
    Reputation
    12
    Thanks
    5

    Lightbulb Defeat Punk BUSTER !!! tut 1

    Hi,

    Here is a way to defeat punkbuster checks ( I used IDA Pro ).

    IDA Pro 4.3 freeware version: https://www.programmersheaven.com/dow.../download.aspx

    First we need to find the "%c%c" or "%s NOT_FOUND" string in pbcl.dll:
    PHP Code:
    .rdata:1005DADC aCC db '%c%c',0
    .rdata:1005DACC aSNot_found db '%s NOT_FOUND',0
    Then go to the DATA XREF:
    PHP Code:
    .text:1002696E push offset aCC ; "%c%c"
    .text:100269F1 push offset aSNot_found ; "%s NOT_FOUND"
    Scroll up to the beginning of the function:
    PHP Code:
    int __cdecl sub_100250E0(struct _MEMORY_BASIC_INFORMATION Buffer)
    It's called like that:
    PHP Code:
    .text:10033E45 push ecx
    .text:10033E46 inc esi
    .text:10033E47 push esi ; our usefull string is stored in this register
    .text:10033E48 push edx
    .text:10033E49 call sub_100250E0
    Now we can detour it:
    PHP Code:
    typedef int ( *PBPerformCheck_t )( int iECX, char **pszESI, _MEMORY_BASIC_INFORMATION mbiArg3 );
    PBPerformCheck_t pPBPerformCheck = 0;

    int _PBPerformCheck( int iECX, char **pszESI, _MEMORY_BASIC_INFORMATION mbiArg3 )
    {
    // if the pszESI's first char is |: Files white list check
    // if the pszESI's first char is B: Cvar check
    // if the pszESI's first char is N: MD5 check
    // if the pszESI's first char is E: Key bind check

    // Remove stuff

    int iReturn = pPBPerformCheck( iECX , pszESI, mbiArg3 );

    // Apply stuff

    return iReturn;
    }

    void Hook( )
    {
    DWORD dwPbclBase = ( DWORD )GetModuleHandle( "pbcl.dll" );
    pPBPerformCheck = ( PBPerformCheck_t )DetourFunction( ( BYTE * )( dwPbclBase + 0x250E0 ), ( BYTE * )_PBPerformCheck, 6 );
    }
    The string also contains the names of the modules/cvars/path ... checked, the AT and LEN value of the MD5 checks, and this code is 100% working for up to date FarCry 1.4 punkbuster client.

    Happy filtering

    !!! Global hardware ban if detected, so use it at your own risk !!!

    Note this isnt made by me i found it in a txt doc in google and copied and pasted it cudos to autohor

  2. #2
    Inna's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    11,161
    Reputation
    61
    Thanks
    270
    My Mood
    Tired
    Let me just say that the link does not work...unless it takes 4 tries to get it open.

  3. #3
    dezer's Avatar
    Join Date
    Nov 2006
    Gender
    male
    Posts
    285
    Reputation
    12
    Thanks
    4
    My Mood
    Aggressive
    the link's been copied wrong
    Quote Originally Posted by killerofsake987 View Post
    wuts search button
    owned

  4. #4
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    mmm i got IDA or w/e its just the TUT is too confusing for me :@

  5. #5
    dezer's Avatar
    Join Date
    Nov 2006
    Gender
    male
    Posts
    285
    Reputation
    12
    Thanks
    4
    My Mood
    Aggressive
    Quote Originally Posted by killerofsake987 View Post
    wuts search button
    owned

  6. #6
    llvengancell's Avatar
    Join Date
    May 2007
    Posts
    390
    Reputation
    12
    Thanks
    5
    GOOGLE is YOUR Friend invite him over to play and he can help you Find shit you may not have been able to found u know like that pokemon figure under your bed

  7. #7
    Design's Avatar
    Join Date
    Jun 2007
    Posts
    31
    Reputation
    10
    Thanks
    0
    The Link as been Frozend Death

Similar Threads

  1. ! X( X( Punk Buster X( X( !
    By qwerty1029 in forum General
    Replies: 2
    Last Post: 08-31-2007, 09:02 PM
  2. punk buster patition
    By prox32 in forum WarRock - International Hacks
    Replies: 10
    Last Post: 07-27-2007, 09:40 PM
  3. how to disable punk buster
    By xXxjaspurxXx in forum WarRock - International Hacks
    Replies: 32
    Last Post: 07-13-2007, 07:33 PM
  4. punk buster formated output tut 4
    By llvengancell in forum WarRock - International Hacks
    Replies: 15
    Last Post: 06-26-2007, 06:38 PM
  5. Punk Buster OFF
    By fas19o in forum WarRock - International Hacks
    Replies: 14
    Last Post: 05-10-2007, 03:13 AM