How to prevent rcon crack ?
#3

Best failsafe for me:

server.cfg
Код:
rcon 0
rcon_password TAzADG3q6AH0UW0HPkfHi0YwSfhE7WsJ
This disables remote RCON (without being in-game) & you should also add punishment for XX failed logins in-game:




pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
    if(!success) BlockIpAddress(ip, 60000);
    return 1;
}
This blocks the player from the server for 1 minute when he enters a wrong RCON password. Don't worry, it auto unblocks him after 60 seconds.
Reply


Messages In This Thread
How to prevent rcon crack ? - by Lester23 - 27.04.2017, 13:07
Re: How to prevent rcon crack ? - by Astralis - 27.04.2017, 14:32
Re: How to prevent rcon crack ? - by Chaprnks - 27.04.2017, 15:48
Re: How to prevent rcon crack ? - by Lester23 - 27.04.2017, 17:26
Re: How to prevent rcon crack ? - by Chaprnks - 27.04.2017, 20:04
Re: How to prevent rcon crack ? - by 001 - 27.04.2017, 22:12

Forum Jump:


Users browsing this thread: 2 Guest(s)