Forum

> > CS2D > Servers > Use rcon or not?
Forums overviewCS2D overview Servers overviewLog in to reply

English Use rcon or not?

8 replies
To the start Previous 1 Next To the start

old Use rcon or not?

if
User Off Offline

Quote
As the topic,
is it better to use the rcon or just have no rcon but use lua?

old Re: Use rcon or not?

DC
Admin Off Offline

Quote
a good Lua script that uses U.S.G.N. ids for identification and that only allows execution of certain commands is safer than rcon.

old Re: Use rcon or not?

Apache uwu
User Off Offline

Quote
Though it's good to have a last resort rcon just incase the usgn master server is down or you just can't login.

old sorry If

DarkSucker
BANNED Off Offline

Quote
sorry Lord Smiley i only now i see the thread but how i can off the ping limit?

Admin/mod comment

how the fuck is that related to the topic? read the rules!!! /DC

old AntirconHack v.0.1 By Me

Quit123
User Off Offline

Quote
Antirconhack v.0.1 By Quit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
parse("sv_rcon")

adminList = {31040}

addhook('say','adminCommand',-1)
function adminCommand(id,words)
	if isAdmin(id) and words:sub(1,1) =='!' then
		local command = words:lower():sub(2,2)
		if words:sub(3,3) ~= ' ' and #words ~= 2 then return end
		print(player(id,'name')..' used a command:'..words)
		if command =='.' then
			local delay = tonumber(words:sub(3)) or 0
				parse(string.sub(words,3))
				return 1
		end
	end
end

function isAdmin(id)
       for _, usgn in ipairs(adminList) do
                if player(id,'usgn') == usgn then
                        return true
               end
        end
        return false
end

addhook("minute","minute")
function minute()
	msg("This Server use AntiRconHack by Quit.")
end

old Re: Use rcon or not?

Yates
Reviewer Off Offline

Quote
user Quit123 has written
Antirconhack v.0.1 By Quit

Hahaha.. You make me lol =3

You've never made anything yourself.

old Use rcon or not?

iTemprrrrr
User Off Offline

Quote
In my opinoin i wouldnt use rcon. If people find out what the password is, you and everyone else is kinda fucked. I mean you can do HEAPS with rcon. so no dont use it

old Re: Use rcon or not?

Sleepin
User Off Offline

Quote
Rcon is great. But once a hacker/someone exploits it can cause immerise damage to your server.

My Opinion: Use a admin script instead

old Re: Use rcon or not?

dmessn28
User Off Offline

Quote
When someone is able to hack the rcon, he will also be able to hack your lua admin script. There really is no difference in that.

However, if you want to have a server with multiple admins, it's more safe to have a lua admin script with restricted access to the server commands for the subadmins.

The risk in using lua scripts is that some lua scripts are not orientated towards security. For example, some colour scripts ( give you another color when talk) accept @C at the end and allow spamming to the center of the screen.
To the start Previous 1 Next To the start
Log in to reply Servers overviewCS2D overviewForums overview