mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.sasl.plain: Apply saslprep to stored password
Fixes something like #1560 here too. The password sent by the user already had saslprep applied.
This commit is contained in:
parent
5dd049acf0
commit
a7083d1ded
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue