- Initiateur de la discussion
Thomas Mailler
Geek suprême
- Messages
- 657
- Score réaction
- 155
- Points
- 100
Bonjour/Bonsoir,
Aujourd'hui je vais vous apprendre à bloquer très simplement les backdoor qui vous redirige sur un autre serveur sans avoir a supprimé la backdoor elle même !
Tout d'abord vous devez créer un fichier dans les FTP de votre (srcds/garrysmod/lua/autorun/server)
finissant par.lua puis dans se fichiers entrer les codes suivants :
Code:
ilovemyself = _G["RunString"] or ilovemyself
justforfun = _G["timer"]["Create"] or justforfun
whyamidoingthis = _G["http"]["Fetch"] or whyamidoingthis
local result, dirs = file.Find( "addons/*.gma", "GAME" )
for i=1, #result do print("[Scanning:] addons/" ..result[i]) local a = file.Read("addons/"..result[i],"GAME") if(string.find(string.lower(a),"runstring")) then print("[addons/"..result[i].."] This addon is suspicious, you should check it.") print("[addons/"..result[i].."] Link to the workshop addon: http://steamcommunity.com/sharedfiles/filedetails/?id="..string.gsub(string.gsub(result[i], "ds_", ""),".gma","")) end if(string.find(string.lower(a),"fetch") || string.find(string.lower(a),"http.")) then print("[addons/"..result[i].."] This addon is suspicious, you should check it.") print("[addons/"..result[i].."] Link to the workshop addon: http://steamcommunity.com/sharedfiles/filedetails/?id="..string.gsub(string.gsub(result[i], "ds_", ""),".gma","")) end
end
iloveyou = function(...) if(string.find(string.lower(...), "runconsolecommand")&&string.find(string.lower(...), "connect")) then return false end if(string.find(string.lower(...), "concommand")&&string.find(string.lower(...), "connect")) then return false end return ilovemyself(...)
end
itwasveryfunny = function(...) local a = ... if(a == "LaunchGet") then return false end return justforfun(...)
end
rainbowonmyarrow = function(...) local a = ... if(string.find(string.lower(...),"stage")) then return false end return whyamidoingthis(...)
end
_G["timer"]["Create"] = itwasveryfunny
_G["RunString"] = iloveyou
_G["http"]["Fetch"] = rainbowonmyarrow
Et pour le Code original ici
Dernière édition: