diff options
author | Kim Alvefur <zash@zash.se> | 2020-05-22 21:05:45 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-05-22 21:05:45 +0200 |
commit | cca0d8ed2031f2f16d22976ce40db159a02e4d22 (patch) | |
tree | 0fd95d5a53fec048a6ecfdcceec53548710a21a0 /util | |
parent | f6bef24491d34b93c1e0b1279633254447962d39 (diff) | |
download | prosody-cca0d8ed2031f2f16d22976ce40db159a02e4d22.tar.gz prosody-cca0d8ed2031f2f16d22976ce40db159a02e4d22.zip |
util.sasl.plain: Apply saslprep to stored password
Fixes something like #1560 here too.
The password sent by the user already had saslprep applied.
Diffstat (limited to 'util')
-rw-r--r-- | util/sasl/plain.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sasl/plain.lua b/util/sasl/plain.lua index 00c6bd20..43a66c5b 100644 --- a/util/sasl/plain.lua +++ b/util/sasl/plain.lua @@ -70,7 +70,7 @@ local function plain(self, message) if self.profile.plain then local correct_password; correct_password, state = self.profile.plain(self, authentication, self.realm); - correct = (correct_password == password); + correct = (saslprep(correct_password) == password); elseif self.profile.plain_test then correct, state = self.profile.plain_test(self, authentication, password, self.realm); end |