BIG PROBLEM!! RCON BUG LOGIN!
#1

EN:

Hi all.
Got a big problem, namely "rcon login bug".
Get all kinds of children in rcon server logs (although I put a password of 30 tion works, numbers + characters)
The password is very secure with numbers, letters, characters, etc!
The login to rcon and make fools out there, money, etc!
What cause is this bug?
I deleted everything related to "command sent" in FS!

Something in the log: RCON (In-Game) Player # 5 (Kaka) HAS logged.
RCON (In-Game) Player [Kaka] sent command: password fuck


suggestions?

sorry my bad english!



RO:
Salutare la toti.
am si eu o mare problema si anume "rcon bug login".
Intra tot felul de copii pe server se logheaza la rcon( desi am pus o parola din 30 litare,cifre+caractere)
Parola este foarte bine securizata cu cifre,litere,caractere,etc!
Se logheaza la rcon si fac prosti pe acolo, ban, etc!
Din ce cauza este acest bug ?
Am sters tot ce tine de "sent command" din FS!

Cate ceva din log: RCON (In-Game): Player #5 (KAKA) has logged in.
RCON (In-Game): Player [KAKA] sent command: password fuck


sugestii ??
pune si parola la server...etc...
Reply
#2

Try kicking players when they try to login to RCON (OnRconLoginAttempt)
Reply
#3

is already done!
another suggestion? disable rcon commands?
Reply
#4

you said your password had lots of numbers and letters and punctuation. You did /rcon login fuck

you also never explained what your bug is...
Reply
#5

I think they can login to RCON with whatever password they want (thats the bug)
Reply
#6

ehm using a timer and set the rcon password to another one like
jcjckmkmmkmcmkцklfpe
цyццffjfkrpolrkrlllmkcцvkfr
. . .
Reply
#7

I talk to a friend
".. can check your script has a" door ".. a small command rcon you discover the one who uses"

the Command / timer be?
Reply
#8

only OnRconLoginAttemp is called when he logs in as rcon

now you can make a securtity system
make the rcon only for specific players name only all the other get kicked
Reply
#9

1) I only know rcon password
2) How can protection, just log on to my name?
Reply
#10

Quote:
Originally Posted by Cpt.Shady
Посмотреть сообщение
1) I only know rcon password
2) How can protection, just log on to my name?
I'm guessing that you're ingame name is Cpt.Shady, though I could be wrong, but this is just an example:

pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
    if(!sucess) return 1; //If they failed, just ignore it - they can't do anything wrong.
    new pip[16], pName[24];
    for(new i=0; i<MAX_PLAYERS; i++) //Loop through all players
    {
        GetPlayerIp(i, pip, sizeof(pip));
        if(!strcmp(ip, pip, true)) //If a player's IP is the IP that logged in
        {
            GetPlayerName(i, pName, 24);
            if(strcmp(pName, "Cpt.Shady")) //Only you
            {
                SendClientMessage(playerid, 0xFF00FFFF, "You are not Cpt.Shady! Bye.");
                Kick(i);
            }
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)