My server rcon password keeps getting hacked (0.3d)
#1

any idea why it gets hacked even if i change it to 30 characters with so hard password
Reply
#2

Are you sure your account gets hacked? so they not hacking into rcon?
Reply
#3

its rcon hacks
i goet bad rcon logins in console and i ban them they keep coming with new ip
Reply
#4

Add "rcon 0" to your server.cfg
Reply
#5

That's not fun .. The new 0.3e will have security updates idk wich security updates..
Reply
#6

Add script

http://forum.sa-mp.com/showthread.ph...light=anti+bot
Reply
#7

Just "block" the rcon login on your gamemode (:
WHen the player login into rcon, get banned.
Reply
#8

Why not make it so only your IP can login?
Reply
#9

You could always use a filterscript by friend made by clicking here.
Reply
#10

lol add this to your game mode bro


Код:
if(!strcmp("/rcon", cmdtext, true))
	{
	    new myname[MAX_PLAYER_NAME];
	    GetPlayerName(playerid, myname, MAX_PLAYER_NAME);
		if(strcmp("YOUR_NAME_HERE",myname, true, 10) == 0) // change to your ingame players name
		{}
		else
		{
		SendClientMessage(playerid,-1,"Bye bye you fag muncher");
		Kick(playerid);//change to how you want to punish them
		}
		return 1;
	}
make sure you change YOUR_NAME_HERE to your name. or you wont be able to log in to the rcon either
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)