Skip to content

Commit e0b57c1

Browse files
committedOct 12, 2015
Fix how address is logged when a wrong password is supplied
- SRP: print the address only once, not twice - Legacy: previously the address was not printed at all - Make both messages structurally the same, to facilitate log analyzers
1 parent 7f2cefa commit e0b57c1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
 

‎src/network/serverpackethandler.cpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,10 @@ void Server::handleCommand_Init_Legacy(NetworkPacket* pkt)
568568
}
569569

570570
if (given_password != checkpwd) {
571-
actionstream << "Server: " << playername << " supplied wrong password"
572-
<< std::endl;
571+
actionstream << "Server: User " << playername
572+
<< " at " << addr_s
573+
<< " supplied wrong password (auth mechanism: legacy)."
574+
<< std::endl;
573575
DenyAccess_Legacy(pkt->getPeerId(), L"Wrong password");
574576
return;
575577
}
@@ -2062,9 +2064,8 @@ void Server::handleCommand_SrpBytesM(NetworkPacket* pkt)
20622064
} else {
20632065
actionstream << "Server: User " << client->getName()
20642066
<< " at " << getPeerAddress(pkt->getPeerId()).serializeString()
2065-
<< " supplied wrong (SRP) password from address "
2066-
<< getPeerAddress(pkt->getPeerId()).serializeString()
2067-
<< "." << std::endl;
2067+
<< " supplied wrong password (auth mechanism: SRP)."
2068+
<< std::endl;
20682069
DenyAccess(pkt->getPeerId(), SERVER_ACCESSDENIED_WRONG_PASSWORD);
20692070
return;
20702071
}

0 commit comments

Comments
 (0)
Please sign in to comment.