Software / code / prosody
Diff
plugins/mod_bosh.lua @ 12444:b33558969b3e 0.12
mod_http (and dependent modules): Make CORS opt-in by default (fixes #1731)
The same-origin policy enforced by browsers is a security measure that should
only be turned off when it is safe to do so. It is safe to do so in Prosody's
default modules, but people may load third-party modules that are unsafe.
Therefore we have flipped the default, so that modules must explicitly opt in
to having CORS headers added on their requests.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Mon, 28 Mar 2022 14:53:24 +0100 |
| parent | 12262:50525021c2c7 |
| child | 12977:74b9e05af71e |
line wrap: on
line diff
--- a/plugins/mod_bosh.lua Mon Mar 28 14:40:21 2022 +0100 +++ b/plugins/mod_bosh.lua Mon Mar 28 14:53:24 2022 +0100 @@ -547,6 +547,9 @@ module:depends("http"); module:provides("http", { default_path = "/http-bind"; + cors = { + enabled = true; + }; route = { ["GET"] = GET_response; ["GET /"] = GET_response;