SA-MP Forums Archive
My server rcon password keeps getting hacked (0.3d) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: My server rcon password keeps getting hacked (0.3d) (/showthread.php?tid=336698)



My server rcon password keeps getting hacked (0.3d) - AMEENAMEEN - 23.04.2012

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


Re: My server rcon password keeps getting hacked (0.3d) - N0FeaR - 23.04.2012

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


Re: My server rcon password keeps getting hacked (0.3d) - AMEENAMEEN - 23.04.2012

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


Respuesta: My server rcon password keeps getting hacked (0.3d) - OPremium - 23.04.2012

Add "rcon 0" to your server.cfg


Re: My server rcon password keeps getting hacked (0.3d) - davve95 - 23.04.2012

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


Re: My server rcon password keeps getting hacked (0.3d) - gabitzu4ever - 23.04.2012

Add script

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


Re: My server rcon password keeps getting hacked (0.3d) - kikito - 23.04.2012

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


Re: My server rcon password keeps getting hacked (0.3d) - ReneG - 23.04.2012

Why not make it so only your IP can login?


Re: My server rcon password keeps getting hacked (0.3d) - Elysian` - 23.04.2012

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


Re: My server rcon password keeps getting hacked (0.3d) - Marco_Valentine - 23.04.2012

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