unknowncheats uc-forum.com ucdownloads ucdownloads.com

Go Back   UC-Tutorials - Multiplayer Game Hacking and Cheat Tutorials > Anti-Cheat Bypass > Other

- Sponsored Advertisement -
http://www.myfpscheats.com/


Reply
 
Thread Tools Display Modes
  #1  
Old 08-09-2010, 01:38 PM
shad0w_ shad0w_ is offline
Junior Member
 
Join Date: Aug 2010
Posts: 16
Default CS2D AC Bypass

Original thread: http://www.uc-forum.com/forum/other-...at-bypass.html

By Geek4Ever



I been working with cs2s for like the past week fun game and works fine on my crappy computer anywho it gots a crappy anti cheat
It detects known process's names such as Cheat Engine
Anti Debugger
Anti Speed Hack
and to bypass that all here u go.

Credits to me and IDA.
*OPPS* forgot the other part.

Defines
Code:
#include <intrin.h>
#pragma intrinsic(_ReturnAddress)
Disables Exiting the process
Code:
typedef void (__cdecl *Exit_t)(int code);
Exit_t Exit = (Exit_t)0x4B7FB0;

typedef int (__cdecl *CloseProcess_t)();
CloseProcess_t CloseProcess;

int __cdecl nCloseProcess()
{
    if(_ReturnAddress() == (void*)0x53a4e3){  //checks if you are trying to close the game and it will allow u to else its just going to disable all the other request to end the game.
        Exit(0);
    }
    return 1;
}

CloseProcess = (CloseProcess_t)    DetourFunction(( BYTE* )(0x4A9900), ( BYTE* )nCloseProcess);
Disables the messagebox
Code:
typedef int (__cdecl *HackMessagebox_t)(int a1, UINT a2);
HackMessagebox_t HackMessagebox;

int __cdecl nHackMessagebox(int a1, UINT a2)
{
    return 0;//just disables the messagebox when it finds something
}
Reply With Quote
Reply

  • Submit Thread to Digg
  • Submit Thread to del.icio.us
  • Submit Thread to StumbleUpon
  • Submit Thread to Google
  • Submit Thread to Facebook
  • Submit Thread to My Yahoo!
  • Submit Thread to MySpace
  • Submit Thread to Twitter
  • Submit Thread to Reddit

Tags
bypass, cs2d

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT. The time now is 02:35 PM.