mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_websocket: Clone stanza before mutating (fixes #1398)
Checking for `stanza.attr.xmlns == nil` to determine if the stanza object is an actual stanza (`<message>`, `<presence>` or `<iq>` in the `jabber:client` or `jabbber:server` namespace) or some other stream element. Since this mutation is not reverted, it may leak to other places and cause them to mistreat stanzas as stream elements. Especially in cases like MUC where a single stanza is broadcast to many recipients.
This commit is contained in:
parent
e081fd6642
commit
3204f55be1
1 changed files with 1 additions and 0 deletions
|
@ -285,6 +285,7 @@ function handle_request(event)
|
|||
end);
|
||||
|
||||
add_filter(session, "stanzas/out", function(stanza)
|
||||
stanza = st.clone(stanza);
|
||||
local attr = stanza.attr;
|
||||
attr.xmlns = attr.xmlns or xmlns_client;
|
||||
if stanza.name:find("^stream:") then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue