Skip Menu |
 

Subject: Password changes can result in replay error
Download (untitled) / with headers
text/plain 1.4KiB
Password changes typically happen over UDP using a request-response
protocol (RFC 3244 or its predecessor). As with the regular Kerberos
protocol, the client will retransmit the UDP request if it does not see
a reply within a second or so. If the first request made it to the
server but the reply got lost, the second request will be rejected as a
replay attack, and the client will report a failure, when in reality the
password change succeeded or failed for some other reason.

Possible solutions and mitigations include:

* Disable the replay cache for password changes in kadmind. This would
have somewhat negative security implications; it would allow password
change requests to be replayed within the window. (That's already
possible in a multi-master setup, of course.)

* The client could prefer TCP over UDP. This would be easy to implement
but might have unwanted side effects.

* If kadmind detects a replay, it could string-to-key the password and
check it against the current key. If it detects a match, it can report
success; if not, it can vaguely report a failure (or it could retry the
password change without actually writing to the KDB to try to get the
correct error result). This approach may have denial-of-service issues
since string-to-key is slow.

* If the client gets a replay error from the server, it could try an AS
request using the desired password. If that works, the client reports
success; if not, it tries the password change again to get the correct
failure message.
From: ghudson@mit.edu
Subject: git commit

Prefer TCP to UDP for password changes

When password changes are performed over UDP, spotty networks may
cause the client to retransmit. This leads to replay errors if the
kpasswd server receives both requests, which hide the actual request
status and make it appear that the password has not been changed, when
it may in fact have been. Use TCP instead with UDP fallback to avoid
this issue.

https://github.com/krb5/krb5/commit/d7b3018d338fc9c989c3fa17505870f23c3759a8
Author: Robbie Harwood <rharwood@redhat.com>
Committer: Greg Hudson <ghudson@mit.edu>
Commit: d7b3018d338fc9c989c3fa17505870f23c3759a8
Branch: master
src/lib/krb5/os/changepw.c | 104 ++++++++++++++++---------------------------
1 files changed, 39 insertions(+), 65 deletions(-)