diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-09-27 15:50:41 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-09-27 15:50:41 +0500 |
commit | be102693fa0d29f5b09635a36ef34083bb7c74d3 (patch) | |
tree | 02da88c4c6d7caac3dc31bfa4066c97c720d8bc3 | |
parent | aa65ea57bd188ba7360e62a3b77298b136ffd0d7 (diff) | |
download | prosody-be102693fa0d29f5b09635a36ef34083bb7c74d3.tar.gz prosody-be102693fa0d29f5b09635a36ef34083bb7c74d3.zip |
mod_legacyauth: Don't allow server-generated resource identifiers, as these are not support by legacy auth.
-rw-r--r-- | plugins/mod_legacyauth.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/mod_legacyauth.lua b/plugins/mod_legacyauth.lua index 0e0170df..25967b33 100644 --- a/plugins/mod_legacyauth.lua +++ b/plugins/mod_legacyauth.lua @@ -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)); |