Results 1 to 13 of 13
  1. #1
    Roxa's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In the Sun
    Posts
    104
    Reputation
    10
    Thanks
    5
    My Mood
    Doh

    Bypassing Bugtrap

    I guess tht BugTrap is annoying, but it actually traps errors or bugs meaning as Detected
    try looking at this (What Bugtraps actually does): Catch All Bugs with BugTrap! - CodeProject
    for e.g I was running Dave's hack and when i started to play a game, i got BugTrapped. I was running CE i got BugTrapped in the loading screen.
    @LoveKiss : I guess ur UCE is Detected for meh :P

    In this thread i need some help on Bypassing Bugtrap, so this is how it goes:
    I've been working at BugTrap and even with help it's still not working So I was getting that "ACCESS_VIOLATION" Error and tried patching and now it seems as if the game is going to load then crashes to desktop. So this is what i'm doing :
    Code:
    DWORD OldProtection;
    void pBugCheck(void *adr, void *ptr, int size)
    {
    VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
    memcpy(adr,ptr,size);
    VirtualProtect(adr,size,OldProtection, &OldProtection);
    }
    
    void Rape_Bug_Trap (void)
    {
    
    long BugTrap = (long)GetModuleHandleA("BugTrap.dll");
    
    pBugCheck((void*)(BugTrap+0xA34F),(void*)(PBYTE)"\xC2\x04\x00",3); //BEGIN_CHECKS
    pBugCheck((void*)(BugTrap+0xA343),(void*)(PBYTE)"\xEB",1); //BEGIN_CHECKS
    pBugCheck((void*)(BugTrap+0xAF57),(void*)(PBYTE)"\xEB",1); //CALLS_BEGIN_CHECKS
    pBugCheck((void*)(BugTrap+0xB04B),(void*)(PBYTE)"\xC3",1); //CALLS_ENDP
    pBugCheck((void*)(BugTrap+0xAF1D),(void*)(PBYTE)"\xEB",1); //ENDP_SUB
    pBugCheck((void*)(BugTrap+0xAE5E),(void*)(PBYTE)"\xC3",1); //UNKNOWN_ERROR
    pBugCheck((void*)(BugTrap+0xB061),(void*)(PBYTE)"\xEB",1); //ENDP_CALLS_SUB
    pBugCheck((void*)(BugTrap+0x8F76),(void*)(PBYTE)"\xC3",1); //GAURD_PAGE
    pBugCheck((void*)(BugTrap+0x8F82),(void*)(PBYTE)"\xC3",1); //ARRAY_BOUNDS_EXCEEDE
    pBugCheck((void*)(BugTrap+0x8FB7),(void*)(PBYTE)"\xC3",1); //ILLEGAL_INSTRUCTION
    pBugCheck((void*)(BugTrap+0x8FBD),(void*)(PBYTE)"\xC3",1); //INVALID_HANDLE
    pBugCheck((void*)(BugTrap+0x8F7C),(void*)(PBYTE)"\xC3",1); //IN_PAGE_ERROR
    pBugCheck((void*)(BugTrap+0x8F70),(void*)(PBYTE)"\xC3",1); //DATA_TYPE_MISALIGNMENT
    pBugCheck((void*)(BugTrap+0x8F5E),(void*)(PBYTE)"\xC3",1); //ACCESS_VIOLATION
    
    
    
    }
    void Loop(void)
    {
    for(;;)
    {
    long BugTrap = (long)GetModuleHandleA("BugTrap.dll");
    if(BugTrap!=0)
    {
    Rape_Bug_Trap();
    }
    Sleep(20);
    }
    }
    Could you tell me what im missing, or u got another way by bypassing BT
    Last edited by Roxa; 04-08-2011 at 12:31 AM.

  2. #2
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    "Bypassing bugtrap".
    That sounds stupid. You would crash either way, bugtrap just reports WHY you crashed.

  3. #3
    Roxa's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In the Sun
    Posts
    104
    Reputation
    10
    Thanks
    5
    My Mood
    Doh
    Quote Originally Posted by Fuko View Post
    "Bypassing bugtrap".
    That sounds stupid. You would crash either way, bugtrap just reports WHY you crashed.
    If that is so,
    then im wrong?
    Last edited by Roxa; 04-08-2011 at 12:35 AM.

  4. #4
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Quote Originally Posted by Roxa View Post
    If that is so,
    then im wrong?
    Bugtrap isn't anti cheat.

  5. #5
    Roxa's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In the Sun
    Posts
    104
    Reputation
    10
    Thanks
    5
    My Mood
    Doh
    Quote Originally Posted by Fuko View Post
    Bugtrap isn't anti cheat.
    i told that its an anti bug or error and if it appears means its detected
    its not an anti-cheat, YES

  6. #6
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860

  7. #7
    Rasta's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Russian Federation
    Posts
    1,373
    Reputation
    122
    Thanks
    1,189
    Quote Originally Posted by Fuko View Post
    Bugtrap isn't anti cheat.
    Wrong ..... it is , not just in USA pb ... , in russia pb if ubgtrap reports few times , then your account will get auto ban

  8. #8
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Quote Originally Posted by LoveKiss View Post


    Wrong ..... it is , not just in USA pb ... , in russia pb if ubgtrap reports few times , then your account will get auto ban
    Still doesn't make it anti cheat
    If you get banned from getting bugtrapped enough times, they probably have a way of checking the crash logs, and if it has anything to with with hooking directX, they will ban you.

    It's NOT an anti cheat.

    @LoveKiss

  9. #9
    Jakob's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    4,721
    Reputation
    237
    Thanks
    510
    My Mood
    Psychedelic
    This^^ Exactly right.
    RIP MINECRAFT SECTION!
    03.10.2010 - 26.09.2011

  10. #10
    Rasta's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Russian Federation
    Posts
    1,373
    Reputation
    122
    Thanks
    1,189
    @Fuko can i buy my buddy back

  11. #11
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    Quote Originally Posted by LoveKiss View Post
    @Fuko can i buy my buddy back
    Little off topic there right? =P
    Anyways, I'm right ******.

  12. #12
    Roxa's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In the Sun
    Posts
    104
    Reputation
    10
    Thanks
    5
    My Mood
    Doh
    Quote Originally Posted by LoveKiss View Post
    @Fuko can i buy my buddy back
    @LoveKiss :
    LOL its not an anti-cheat buddy,
    Xtrap is

    @Fuko
    You're right, dont mind of LoveKiss

  13. #13
    WanQuiSheR's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Under Ur Bed
    Posts
    1,961
    Reputation
    156
    Thanks
    155
    My Mood
    Twisted
    its not an anti cheat .... fail