mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_legacyauth: Don't allow server-generated resource identifiers, as these are not support by legacy auth.
This commit is contained in:
parent
aa65ea57bd
commit
be102693fa
1 changed files with 5 additions and 1 deletions
|
@ -52,7 +52,7 @@ module:add_iq_handler("c2s_unauthed", "jabber:iq:auth",
|
|||
resource = resourceprep(resource)
|
||||
local reply = st.reply(stanza);
|
||||
require "core.usermanager"
|
||||
if username and usermanager.validate_credentials(session.host, username, password) then
|
||||
if username and resource and usermanager.validate_credentials(session.host, username, password) then
|
||||
-- Authentication successful!
|
||||
local success, err = sessionmanager.make_authenticated(session, username);
|
||||
if success then
|
||||
|
@ -62,6 +62,10 @@ module:add_iq_handler("c2s_unauthed", "jabber:iq:auth",
|
|||
session.send(st.error_reply(stanza, err_type, err, err_msg));
|
||||
session.username, session.type = nil, "c2s_unauthed"; -- FIXME should this be placed in sessionmanager?
|
||||
return true;
|
||||
elseif resource ~= session.resource then -- server changed resource, not supported by legacy auth
|
||||
session.send(st.error_reply(stanza, "cancel", "conflict", "The requested resource could not be assigned to this session."));
|
||||
session:close(); -- FIXME undo resource bind and auth instead of closing the session?
|
||||
return true;
|
||||
end
|
||||
end
|
||||
session.send(st.reply(stanza));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue