mod_websocket: Enforce stanza size limit and close stream

This commit is contained in:
Matthew Wild 2020-09-17 16:42:36 +01:00
parent 3c0924eee1
commit 364146dbb1

View file

@ -285,6 +285,10 @@ function handle_request(event)
local frame, length = parse_frame(frameBuffer);
while frame do
if length > stanza_size_limit then
session:close({ condition = "policy-violation", text = "stanza too large" });
return;
end
frameBuffer:discard(length);
local result = handle_frame(frame);
if not result then return; end