RCON HACKER!
#1

Hello is there a way to protect from rcon hackers? I got like 5 hackers today using the hack how do i protect?
Reply
#2

Change your password.
Reply
#3

I did and happend again
Reply
#4

Bro, are you sure they didn't success? I think that they're just attempting + Change your RCON pass to Letters+Numbers mixed!

Thanks.....
Reply
#5

I guess your password is numbers?

And its small?

Get better protection, more like, add a command having another password when somebody logins into RCON and if he didnt type the password he gets kicked.

Make a very big password, letters and numbers.
Reply
#6

Make your password really long like
Код:
"regfnjdegfnrGKJB;NFGKJRFGHDFAKJGBHJL;HJFKDAS;BHDFKJAG;FDAJGHDFJGKDFGHSH;;hdskjbdrhsgjdrfghdr;lgdrh;oghdfgjhg;hjdagkhdfghkjh;aksfbdfkgbdfkjabfgkdfjgkbsdkjfbgdsklgkhdrugsbhjklsfhbdbsbgg;;ksg;hkeildkoeilds,tgoidbgldbhbhkldehnbgkahnsdjdsbfj"
Trust me it works..
Reply
#7

Thanks guys
Reply
#8

And as i said in my last post make the pass so long
Letters+Numbers mixed

And use this too, when someone fails on rcon pass 3 times he gets a ban.
pawn Код:
new Attempt[MAX_PLAYERS];
public OnRconLoginAttempt(ip[], password[], success)
{
    if(!success)
    {
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(IsPlayerConnected(i))
            {
                Attempt[i]+=1;
                if(Attempt[i]>=3)
                {
                    Ban(i);
                }
            }
        }
    }
    return 1;
}
Reply
#9

Quote:
Originally Posted by GoldZoroGrab
Посмотреть сообщение
And as i said in my last post make the pass so long
Letters+Numbers mixed

And use this too, when someone fails on rcon pass 3 times he gets a ban.
pawn Код:
new Attempt[MAX_PLAYERS];
public OnRconLoginAttempt(ip[], password[], success)
{
    if(!success)
    {
        Attempt[playerid]=+1;
        if(Attempt[playerid]>=3)
        {
            Ban(playerid);
        }
    }
    return 1;
}
Did you even bother to compile this? Just by looking at "your" code I can see 2 errors.
Reply
#10

Quote:
Originally Posted by GoldZoroGrab
Посмотреть сообщение
And as i said in my last post make the pass so long
Letters+Numbers mixed

And use this too, when someone fails on rcon pass 3 times he gets a ban.
pawn Код:
new Attempt[MAX_PLAYERS];
public OnRconLoginAttempt(ip[], password[], success)
{
    if(!success)
    {
        Attempt[playerid]=+1;
        if(Attempt[playerid]>=3)
        {
            Ban(playerid);
        }
    }
    return 1;
}
Good luck trying to ban an invalid playerid!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)