pleroma/lib/pleroma/plugs/http_security_plug.ex

116 lines
3.1 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 16:41:47 +01:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-11-12 16:08:02 +01:00
defmodule Pleroma.Plugs.HTTPSecurityPlug do
2018-11-11 07:50:28 +01:00
alias Pleroma.Config
2018-11-11 07:10:21 +01:00
import Plug.Conn
2020-01-28 15:04:13 +01:00
require Logger
2018-11-11 07:10:21 +01:00
def init(opts), do: opts
2018-12-09 10:12:48 +01:00
def call(conn, _options) do
2018-11-12 16:08:02 +01:00
if Config.get([:http_security, :enabled]) do
2018-12-09 10:12:48 +01:00
conn
|> merge_resp_headers(headers())
|> maybe_send_sts_header(Config.get([:http_security, :sts]))
2018-11-11 07:50:28 +01:00
else
conn
end
2018-11-11 07:10:21 +01:00
end
defp headers do
referrer_policy = Config.get([:http_security, :referrer_policy])
2019-05-16 07:49:40 +02:00
report_uri = Config.get([:http_security, :report_uri])
2019-05-16 07:49:40 +02:00
headers = [
2018-11-11 07:10:21 +01:00
{"x-xss-protection", "1; mode=block"},
{"x-permitted-cross-domain-policies", "none"},
{"x-frame-options", "DENY"},
{"x-content-type-options", "nosniff"},
{"referrer-policy", referrer_policy},
2018-11-11 07:10:21 +01:00
{"x-download-options", "noopen"},
{"content-security-policy", csp_string() <> ";"}
]
2019-05-16 07:49:40 +02:00
if report_uri do
report_group = %{
"group" => "csp-endpoint",
"max-age" => 10_886_400,
"endpoints" => [
%{"url" => report_uri}
]
}
headers ++ [{"reply-to", Jason.encode!(report_group)}]
else
headers
end
2018-11-11 07:10:21 +01:00
end
defp csp_string do
scheme = Config.get([Pleroma.Web.Endpoint, :url])[:scheme]
static_url = Pleroma.Web.Endpoint.static_url()
websocket_url = Pleroma.Web.Endpoint.websocket_url()
2019-05-16 07:49:40 +02:00
report_uri = Config.get([:http_security, :report_uri])
connect_src = "connect-src 'self' #{static_url} #{websocket_url}"
connect_src =
if Pleroma.Config.get(:env) == :dev do
connect_src <> " http://localhost:3035/"
else
connect_src
end
script_src =
if Pleroma.Config.get(:env) == :dev do
"script-src 'self' 'unsafe-eval'"
else
"script-src 'self'"
end
2019-05-16 07:49:40 +02:00
main_part = [
2018-11-11 07:10:21 +01:00
"default-src 'none'",
"base-uri 'self'",
"frame-ancestors 'none'",
"img-src 'self' data: https:",
"media-src 'self' https:",
"style-src 'self' 'unsafe-inline'",
"font-src 'self'",
"manifest-src 'self'",
connect_src,
2019-05-16 07:49:40 +02:00
script_src
2018-11-11 07:10:21 +01:00
]
2019-05-16 07:49:40 +02:00
report = if report_uri, do: ["report-uri #{report_uri}; report-to csp-endpoint"], else: []
insecure = if scheme == "https", do: ["upgrade-insecure-requests"], else: []
(main_part ++ report ++ insecure)
2018-11-11 07:10:21 +01:00
|> Enum.join("; ")
end
2018-11-11 07:50:28 +01:00
2020-01-28 15:04:13 +01:00
def warn_if_disabled do
unless Config.get([:http_security, :enabled]) do
Logger.warn("HTTP Security is disabled. Add this line to you config to enable it:
config :pleroma, :http_security, enabled: true
")
end
end
2018-11-11 07:50:28 +01:00
defp maybe_send_sts_header(conn, true) do
2018-11-12 16:08:02 +01:00
max_age_sts = Config.get([:http_security, :sts_max_age])
max_age_ct = Config.get([:http_security, :ct_max_age])
2018-11-11 07:50:28 +01:00
merge_resp_headers(conn, [
{"strict-transport-security", "max-age=#{max_age_sts}; includeSubDomains"},
{"expect-ct", "enforce, max-age=#{max_age_ct}"}
2018-11-11 07:50:28 +01:00
])
end
defp maybe_send_sts_header(conn, _), do: conn
2018-11-11 07:10:21 +01:00
end