mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Fized: Added check to ensure that resource binding is done after auth.
This commit is contained in:
parent
e00ee96830
commit
2afc5cdef0
1 changed files with 7 additions and 0 deletions
|
@ -16,6 +16,13 @@ local jid_split = jid.split;
|
||||||
function core_process_stanza(origin, stanza)
|
function core_process_stanza(origin, stanza)
|
||||||
log("debug", "Received: "..tostring(stanza))
|
log("debug", "Received: "..tostring(stanza))
|
||||||
-- TODO verify validity of stanza (as well as JID validity)
|
-- TODO verify validity of stanza (as well as JID validity)
|
||||||
|
|
||||||
|
if origin.type == "c2s" and not origin.full_jid
|
||||||
|
and not(stanza.name == "iq" and stanza.tags[1] and stanza.tags[1].name == "bind"
|
||||||
|
and stanza.tags[1].attr.xmlns == "urn:ietf:params:xml:ns:xmpp-bind") then
|
||||||
|
error("Client MUST bind resource after auth");
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
local to = stanza.attr.to;
|
local to = stanza.attr.to;
|
||||||
stanza.attr.from = origin.full_jid -- quick fix to prevent impersonation
|
stanza.attr.from = origin.full_jid -- quick fix to prevent impersonation
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue