mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
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.
This commit is contained in:
parent
331ede129e
commit
f19f1088b7
4 changed files with 8 additions and 1 deletions
|
@ -547,6 +547,9 @@ function module.add_host(module)
|
|||
module:depends("http");
|
||||
module:provides("http", {
|
||||
default_path = "/http-bind";
|
||||
cors = {
|
||||
enabled = true;
|
||||
};
|
||||
route = {
|
||||
["GET"] = GET_response;
|
||||
["GET /"] = GET_response;
|
||||
|
|
|
@ -163,7 +163,7 @@ function module.add_host(module)
|
|||
|
||||
local cors = cors_overrides[app_name] or event.item.cors;
|
||||
if cors then
|
||||
if cors.enabled ~= false then
|
||||
if cors.enabled == true then
|
||||
if cors.credentials ~= nil then
|
||||
app_credentials = cors.credentials;
|
||||
end
|
||||
|
|
|
@ -578,6 +578,7 @@ if not external_base_url then
|
|||
module:provides("http", {
|
||||
streaming_uploads = true;
|
||||
cors = {
|
||||
enabled = true;
|
||||
credentials = true;
|
||||
headers = {
|
||||
Authorization = true;
|
||||
|
|
|
@ -355,6 +355,9 @@ function module.add_host(module)
|
|||
module:provides("http", {
|
||||
name = "websocket";
|
||||
default_path = "xmpp-websocket";
|
||||
cors = {
|
||||
enabled = true;
|
||||
};
|
||||
route = {
|
||||
["GET"] = handle_request;
|
||||
["GET /"] = handle_request;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue