Results 1 to 8 of 8
  1. #1
    Blue Kirby's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    181
    Reputation
    49
    Thanks
    600
    My Mood
    Psychedelic

    GmodZ's "anti-cheat" (how to bypass)

    Ah, yes. I didn't even know the server had an anti-cheat because of my CVAR spoofer. But for those of you that want to see this so called "anti-cheat", here it is. There is no file for it. It's sent using ply:SendLua. When they decide to put some work into an anti-cheat, I won't post how to bypass it.

    Code:
    timer.Create( "AntiCheatTimer", 20, 0, function()
    	net.Start( "AntCheatCheck" )
    		net.WriteBit(GetConVarNumber( "sv_allowcslua" )>0)
    	net.SendToServer()
    end)
    There's 3 different ways I can see to bypass this right off the bat, destroy the timer, filter the net message, CVAR spoofer. You can use any of the following code. I recommend using the timer.Destroy method.

    Code:
    timer.Destroy( "AntiCheatTimer" )
    Code:
    --I do not recommend using this method as it is shitty.
    local netStart = net.Start
    
    function net.Start( str )
    	if (str != "AntCheatCheck") then
    		netStart( str );
    	end
    end
    Code:
    local OriginalGetConVarNumber = GetConVarNumber;
    
    function GetConVarNumber( name )
    	if ( name == "sv_allowcslua" ) then
    		return 0;
    	else
    		return OriginalGetConVarNumber( name );
    	end
    end
    Last edited by Blue Kirby; 05-07-2013 at 08:41 PM.

  2. The Following 5 Users Say Thank You to Blue Kirby For This Useful Post:

    horsenipple (05-08-2013),Knubbis (05-08-2013),MeepDarknessMeep (05-07-2013),Salam Al Mahoiz (05-12-2013),Zombeezz (05-09-2013)

  3. #2
    Knubbis's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    6
    My Mood
    Psychedelic
    I like how after your post this, you go and give the GmodZ server an incentive to disable this bypass lmao. Found an easier way to bypass this as well.

  4. #3
    superaero_'s Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Australia
    Posts
    228
    Reputation
    10
    Thanks
    23
    My Mood
    Devilish
    Quote Originally Posted by Knubbis View Post
    I like how after your post this, you go and give the GmodZ server an incentive to disable this bypass lmao. Found an easier way to bypass this as well.
    What's that? Enable Lua, Load lua, disable lua o.o

  5. #4
    Knubbis's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    6
    My Mood
    Psychedelic
    Quote Originally Posted by superaero_ View Post
    What's that? Enable Lua, Load lua, disable lua o.o
    Nope even easier than that. Just have to load my clientside lua files before autorun/client and voila.

  6. #5
    Zombeezz's Avatar
    Join Date
    Dec 2012
    Gender
    female
    Location
    professional 1v1er
    Posts
    156
    Reputation
    10
    Thanks
    128
    Blue Kirby will you be adding this to your hack if not do i just C+P the "timer.Destroy( "AntiCheatTimer" )" on the bottom of the hack?

  7. #6
    LennyPenny's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    314
    Reputation
    10
    Thanks
    383
    My Mood
    Sad
    And are you showing us how to do that, knubbis?

  8. #7
    Blue Kirby's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    181
    Reputation
    49
    Thanks
    600
    My Mood
    Psychedelic
    Quote Originally Posted by LennyPenny View Post
    And are you showing us how to do that, knubbis?
    Fuck off, freeloader. I release stuff you guys couldn't make in 10 years and you want more and more and more. Make it yourself.

  9. #8
    LennyPenny's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    314
    Reputation
    10
    Thanks
    383
    My Mood
    Sad
    I wasn't talking to you.
    And btw if you would look more carefully, you would see that I released my stuff here too, fixed other peoples work and helped other users. It's not about freeloading.
    Last edited by LennyPenny; 05-10-2013 at 05:37 AM.

Similar Threads

  1. [Request] tut for anti cheat bypassing
    By fatbox187 in forum Programming Tutorial Requests
    Replies: 1
    Last Post: 12-26-2015, 03:20 AM
  2. [Request]12 Sky 2 (has no anti cheat(e.g. punkbuster))
    By Stelthkid in forum Hack Requests
    Replies: 1
    Last Post: 02-06-2011, 05:17 AM
  3. [Request] Rune 1.00-1.03 Anti-Cheat (AntiTCCv2.3) Bypass
    By Druid in forum Anti-Cheat
    Replies: 0
    Last Post: 10-27-2009, 12:56 PM
  4. FMProtect, another anti-cheat....
    By wenddy in forum Anti-Cheat
    Replies: 2
    Last Post: 06-22-2008, 09:44 PM
  5. F**K the anti-cheat programs
    By Cr4azyPh4ntom in forum Anti-Cheat
    Replies: 1
    Last Post: 12-21-2007, 09:54 AM