2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# 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
|
|
|
|
|
|
|
|
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
|
2018-11-12 16:14:46 +01:00
|
|
|
referrer_policy = Config.get([:http_security, :referrer_policy])
|
2019-05-16 07:49:40 +02:00
|
|
|
report_uri = Config.get([:http_security, :report_uri])
|
2018-11-12 16:14:46 +01:00
|
|
|
|
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"},
|
2018-11-12 16:14:46 +01:00
|
|
|
{"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
|
2019-02-12 00:08:52 +01:00
|
|
|
scheme = Config.get([Pleroma.Web.Endpoint, :url])[:scheme]
|
2019-03-05 01:44:24 +01:00
|
|
|
static_url = Pleroma.Web.Endpoint.static_url()
|
2019-05-03 13:45:04 +02:00
|
|
|
websocket_url = Pleroma.Web.Endpoint.websocket_url()
|
2019-05-16 07:49:40 +02:00
|
|
|
report_uri = Config.get([:http_security, :report_uri])
|
2019-03-05 01:44:24 +01:00
|
|
|
|
|
|
|
connect_src = "connect-src 'self' #{static_url} #{websocket_url}"
|
2019-02-02 19:06:26 +01:00
|
|
|
|
|
|
|
connect_src =
|
2019-06-06 22:59:51 +02:00
|
|
|
if Pleroma.Config.get(:env) == :dev do
|
2019-03-05 01:44:24 +01:00
|
|
|
connect_src <> " http://localhost:3035/"
|
2019-02-02 19:06:26 +01:00
|
|
|
else
|
2019-03-05 01:44:24 +01:00
|
|
|
connect_src
|
2019-02-02 19:06:26 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
script_src =
|
2019-06-06 22:59:51 +02:00
|
|
|
if Pleroma.Config.get(:env) == :dev do
|
2019-02-02 19:06:26 +01:00
|
|
|
"script-src 'self' 'unsafe-eval'"
|
|
|
|
else
|
|
|
|
"script-src 'self'"
|
|
|
|
end
|
2018-11-26 21:40:29 +01:00
|
|
|
|
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'",
|
2018-11-26 20:48:24 +01:00
|
|
|
"manifest-src 'self'",
|
2019-02-02 19:06:26 +01:00
|
|
|
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
|
|
|
|
|
|
|
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, [
|
2018-11-11 07:53:42 +01:00
|
|
|
{"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
|