aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-25 05:06:13 +0100
committerKim Alvefur <zash@zash.se>2016-11-25 05:06:13 +0100
commit67dc0fb56ae204ea57288b56bc85fd28cb2ad1d1 (patch)
tree353c2dd49cc70da263424ddfad582f4bdabb651a /core
parentcfa5d207938b23a2e00689439d4fbe2c0aec09dd (diff)
downloadprosody-67dc0fb56ae204ea57288b56bc85fd28cb2ad1d1.tar.gz
prosody-67dc0fb56ae204ea57288b56bc85fd28cb2ad1d1.zip
core.stanza_router: Require 'id' attribute on iq stanzas (fixes #785)
Diffstat (limited to 'core')
-rw-r--r--core/stanza_router.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index cf098258..2fb480ee 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -70,6 +70,9 @@ function core_process_stanza(origin, stanza)
if not iq_types[st_type] or ((st_type == "set" or st_type == "get") and (#stanza.tags ~= 1)) then
origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid IQ type or incorrect number of children"));
return;
+ elseif not stanza.attr.id then
+ origin.send(st.error_reply(stanza, "modify", "bad-request", "Missing required 'id' attribute"));
+ return;
end
end