mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Enforce stanza size limit and close stream
This commit is contained in:
parent
3c0924eee1
commit
364146dbb1
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue