mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-06 17:35:14 -05:00
Deny empty username early in the protocol
Thanks to @UltimateNate for pointing this out :)
This commit is contained in:
parent
9facb40738
commit
e13d2bafc6
@ -164,9 +164,11 @@ void Server::handleCommand_Init(NetworkPacket* pkt)
|
||||
*/
|
||||
const char* playername = playerName.c_str();
|
||||
|
||||
if (playerName.size() > PLAYERNAME_SIZE) {
|
||||
actionstream << "Server: Player with an too long name "
|
||||
<< "tried to connect from " << addr_s << std::endl;
|
||||
size_t pns = playerName.size();
|
||||
if (pns == 0 || pns > PLAYERNAME_SIZE) {
|
||||
actionstream << "Server: Player with "
|
||||
<< ((pns > PLAYERNAME_SIZE) ? "a too long" : "an empty")
|
||||
<< " name tried to connect from " << addr_s << std::endl;
|
||||
DenyAccess(pkt->getPeerId(), SERVER_ACCESSDENIED_WRONG_NAME);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user