mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_internal_hashed: Fixed SCRAM-SHA-1 mechanism to not traceback on non-existent users.
This commit is contained in:
parent
5be7de51a6
commit
41da5ba5b5
1 changed files with 5 additions and 3 deletions
|
@ -144,10 +144,12 @@ function new_hashpass_provider(host)
|
|||
return usermanager.test_password(prepped_username, password, realm), true;
|
||||
end,
|
||||
scram_sha_1 = function(username, realm)
|
||||
local credentials = datamanager.load(username, host, "accounts") or {};
|
||||
local credentials = datamanager.load(username, host, "accounts");
|
||||
if not credentials then return; end
|
||||
if credentials.password then
|
||||
usermanager.set_password(username, credentials.password, host);
|
||||
credentials = datamanager.load(username, host, "accounts") or {};
|
||||
credentials = datamanager.load(username, host, "accounts");
|
||||
if not credentials then return; end
|
||||
end
|
||||
|
||||
-- convert hexpass to stored_key and server_key
|
||||
|
@ -159,7 +161,7 @@ function new_hashpass_provider(host)
|
|||
credentials.hashpass = nil
|
||||
datamanager.store(username, host, "accounts", credentials);
|
||||
end
|
||||
|
||||
|
||||
local stored_key, server_key, iteration_count, salt = credentials.stored_key, credentials.server_key, credentials.iteration_count, credentials.salt;
|
||||
stored_key = stored_key and from_hex(stored_key);
|
||||
server_key = server_key and from_hex(server_key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue