# HG changeset patch # User Kim Alvefur # Date 1531354456 -7200 # Node ID 43241e74bb1929a498ec76b0728214e8e26b8428 # Parent ce461a67d2ccf495dc2d627c6118c4f04818285c MUC: Reject invisible nicknames (fixes #979) diff -r ce461a67d2cc -r 43241e74bb19 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Thu Jul 12 01:50:06 2018 +0200 +++ b/plugins/muc/muc.lib.lua Thu Jul 12 02:14:16 2018 +0200 @@ -401,6 +401,14 @@ end end, -10); +module:hook("muc-occupant-pre-join", function(event) + local nick = jid_resource(event.stanza.attr.from); + if not nick:find("%S") then + event.origin.send(st.error_reply(stanza, "modify", "not-allowed", "Invisible Nicknames are forbidden")); + return true; + end +end, 1); + function room_mt:handle_first_presence(origin, stanza) if not stanza:get_child("x", "http://jabber.org/protocol/muc") then module:log("debug", "Room creation without , possibly desynced");