Results 1 to 11 of 11
  1. #1
    xSupermassivex's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    Palestinian Territory, Occupied
    Posts
    56
    Reputation
    10
    Thanks
    4
    My Mood
    Worried

    Question Undetectable hacks (aimbot and wallhack) for GMod?

    I have some LUA hacks for the GMod and I played with them on one of my fav servers but now they have just installed an anti-cheat and now everytime I inject the hack, a message appears on the chatbox saying "I'm using hacks BAN ME". So, my question is there is a way to inject without being detected or there are some hacks undetectable?
    Last edited by Hunter; 12-14-2015 at 10:24 AM.

  2. #2
    Mistayq's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    9
    Name of anti-cheat? I think it's qac correct me if I'm wrong (they're are bypasses for this). Just do datapack_paths in console when in the server and find the name of the anti cheat

  3. The Following User Says Thank You to Mistayq For This Useful Post:

    xSupermassivex (09-07-2015)

  4. #3
    xSupermassivex's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    Palestinian Territory, Occupied
    Posts
    56
    Reputation
    10
    Thanks
    4
    My Mood
    Worried
    Quote Originally Posted by Mistayq View Post
    Name of anti-cheat? I think it's qac correct me if I'm wrong (they're are bypasses for this). Just do datapack_paths in console when in the server and find the name of the anti cheat
    Thanks for that command . I did it and I got this:

    ] datapack_paths
    1. "addons/libk/lua/"
    2. "addons/pac3/lua/"
    3. "addons/pointshop2/lua/"
    4. "addons/powerrounds/lua/"
    5. "addons/topplayers/lua/"
    6. "addons/tttdamagelogs/lua/"
    7. "addons/ulib/lua/"
    8. "addons/ulx/lua/"
    9. "addons/wyozitev/lua/"
    10. "lua/"
    11. "gamemodes/"
    12. "gamemodes/base/entities/"
    13. "gamemodes/terrortown/entities/"

  5. #4
    bee_tee_gee's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    157
    Reputation
    10
    Thanks
    64
    Quote Originally Posted by Mistayq View Post
    Name of anti-cheat? I think it's qac correct me if I'm wrong (they're are bypasses for this). Just do datapack_paths in console when in the server and find the name of the anti cheat
    use a c++ cheat & there's your qac bypass

  6. #5
    xSupermassivex's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    Palestinian Territory, Occupied
    Posts
    56
    Reputation
    10
    Thanks
    4
    My Mood
    Worried
    So... of those addons/scripts which is the one that is the anti-cheat? Maybe "addons/wyozitev/lua/"
    ☭ Workers of the world, unite! ☭

    Always ANTIFASCIST! x Straight Edge proud x

  7. #6
    RabidRunner's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    225
    Reputation
    10
    Thanks
    1,114
    My Mood
    Tired
    Quote Originally Posted by xSupermassivex View Post
    So... of those addons/scripts which is the one that is the anti-cheat? Maybe "addons/wyozitev/lua/"
    Download scripthook find out yourself?

  8. #7
    MasterKitty's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    22
    Quote Originally Posted by xSupermassivex View Post
    I have some LUA hacks for the GMod and I played with them on one of my fav servers but now they have just installed an anti-cheat and now everytime I inject the hack, a message appears on the chatbox saying "I'm using hacks BAN ME". So, my question is there is a way to inject without being detected or there are some hacks undetectable?
    no u can only get real undetected hacks at antibirus or buy hack sources from people

  9. #8
    xSupermassivex's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    Palestinian Territory, Occupied
    Posts
    56
    Reputation
    10
    Thanks
    4
    My Mood
    Worried
    Quote Originally Posted by RabidRunner View Post
    Download scripthook find out yourself?
    I did it and I found the anti-cheat, the thing is that it's an anti-cheat created by an user. This is the .lua code:


    MsgC(Color(255,0,0), "[LAC] Iniciado\n")



    CreateClientConVar("lorza_AntiHacks", 1)

    CreateClientConVar("lorza_LUA", 1)

    CreateClientConVar("lorza_CHEATS", 1)





    timer.Create( "lorza_anti_cheats", 10, 0, function()

    if GetConVarNumber("lorza_AntiHacks") == 1 then



    // Anti sv_allowcslua 1

    if GetConVarNumber("lorza_LUA") == 1 then

    if GetConVarNumber("sv_allowcslua") ~= 0 then

    RunConsoleCommand("say", "[LAC] Baneadme, estoy usando hacks!")

    RunConsoleCommand("say", "[LAC] He cambiado la variable sv_allowcslua a 1")

    end



    // Anti sv_cheats 1

    if GetConVarNumber("lorza_CHEATS") == 1 then

    if GetConVarNumber("sv_cheats") ~= 0 then

    RunConsoleCommand("say", "[LAC] Baneadme, estoy haciendo trampas!")

    RunConsoleCommand("say", "[LAC] He cambiado la variable sv_cheats a 1")

    end

    end

    end

    end

    end)


    So... if someone could help me breaking this anti-cheat
    Last edited by xSupermassivex; 09-10-2015 at 11:08 AM.
    ☭ Workers of the world, unite! ☭

    Always ANTIFASCIST! x Straight Edge proud x

  10. #9
    Liquidsocks's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    ▲▲▲ in the triforce
    Posts
    140
    Reputation
    10
    Thanks
    100
    alias say

    //////////////

  11. The Following User Says Thank You to Liquidsocks For This Useful Post:

    Kyouko (09-10-2015)

  12. #10
    Kyouko's Avatar
    Join Date
    May 2015
    Gender
    female
    Posts
    102
    Reputation
    10
    Thanks
    99
    Method 1:
    Detour GetConVarNumber to exclude sv_cheats and sv_allowcslua.

    Method 2 (best):
    Prevent the file from running. (RunString hook)

    Method 3:
    Destroy the "lorza_anti_cheats" timer.

    EDIT:
    Holy shit, the actual ConVars are clientside and not replicated...
    Just set lorza_AntiHacks to 0 in your game console.


    There are more methods to bypass this pile of shit though.
    Have fun.
    Last edited by Kyouko; 09-10-2015 at 11:43 AM.

  13. The Following User Says Thank You to Kyouko For This Useful Post:

    xSupermassivex (09-10-2015)

  14. #11
    xSupermassivex's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    Palestinian Territory, Occupied
    Posts
    56
    Reputation
    10
    Thanks
    4
    My Mood
    Worried
    Thank you a lot. I dind't notice that shit doesn't have replication... I'll set that to 0 and play . Maybe they will update this crap so I'll ask for more help here when they "update" this anti-hacks.
    ☭ Workers of the world, unite! ☭

    Always ANTIFASCIST! x Straight Edge proud x

  15. The Following User Says Thank You to xSupermassivex For This Useful Post:

    xhax123 (07-16-2016)

Similar Threads

  1. [Release] DnsCheat 2.0 Aimbot And Wallhack for tekno mw3 2.7.3.7
    By Dns Rain in forum Call of Duty Modern Warfare 3 Private Server Hacks
    Replies: 66
    Last Post: 03-13-2019, 08:34 AM
  2. Replies: 1
    Last Post: 01-13-2014, 06:50 PM
  3. [Release] ★ Gmod 13 Hacks ★ Aimbot ★ ESP ★ Wallhack ★ And Much More [UNDETECTED]
    By Transfixed in forum Garry's Mod Hacks & Cheats
    Replies: 3
    Last Post: 05-07-2013, 04:36 AM
  4. [Help] Are there any aimbot and wallhack for MW3 on 360?
    By Tom Sebecke in forum XBOX General Discussion
    Replies: 3
    Last Post: 03-08-2012, 02:24 AM
  5. [Request] Purchasing AIMBOT and WALLHACK for SASEA
    By frontnic in forum Sudden Attack General
    Replies: 1
    Last Post: 03-17-2010, 03:30 PM

Tags for this Thread