RCON HACKER! - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: RCON HACKER! (
/showthread.php?tid=450195)
RCON HACKER! -
xXHeathXx12 - 12.07.2013
Hello is there a way to protect from rcon hackers? I got like 5 hackers today using the hack how do i protect?
Re: RCON HACKER! -
SchurmanCQC - 12.07.2013
Change your password.
Re: RCON HACKER! -
xXHeathXx12 - 12.07.2013
I did and happend again
Re: RCON HACKER! -
GoldZoroGrab - 12.07.2013
Bro, are you sure they didn't success? I think that they're just attempting + Change your RCON pass to Letters+Numbers mixed!
Thanks.....
Re: RCON HACKER! -
HyDrAtIc - 12.07.2013
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.
Re: RCON HACKER! -
V0rTeX - 12.07.2013
Make your password really long like
Код:
"regfnjdegfnrGKJB;NFGKJRFGHDFAKJGBHJL;HJFKDAS;BHDFKJAG;FDAJGHDFJGKDFGHSH;;hdskjbdrhsgjdrfghdr;lgdrh;oghdfgjhg;hjdagkhdfghkjh;aksfbdfkgbdfkjabfgkdfjgkbsdkjfbgdsklgkhdrugsbhjklsfhbdbsbgg;;ksg;hkeildkoeilds,tgoidbgldbhbhkldehnbgkahnsdjdsbfj"
Trust me it works..
Re: RCON HACKER! -
xXHeathXx12 - 12.07.2013
Thanks guys
Re: RCON HACKER! -
GoldZoroGrab - 12.07.2013
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;
}
Re: RCON HACKER! -
thefatshizms - 12.07.2013
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.
Re: RCON HACKER! -
linuxthefish - 12.07.2013
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!