akkoma/lib/pleroma/plugs/http_security_plug.ex

105 lines
2.8 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-11-12 15:08:02 +00:00
defmodule Pleroma.Plugs.HTTPSecurityPlug do
2018-11-11 06:50:28 +00:00
alias Pleroma.Config
2018-11-11 06:10:21 +00:00
import Plug.Conn
def init(opts), do: opts
2018-12-09 09:12:48 +00:00
def call(conn, _options) do
2018-11-12 15:08:02 +00:00
if Config.get([:http_security, :enabled]) do
2018-12-09 09:12:48 +00:00
conn
|> merge_resp_headers(headers())
|> maybe_send_sts_header(Config.get([:http_security, :sts]))
2018-11-11 06:50:28 +00:00
else
conn
end
2018-11-11 06:10:21 +00:00
end
defp headers do
referrer_policy = Config.get([:http_security, :referrer_policy])
2019-05-16 05:49:40 +00:00
report_uri = Config.get([:http_security, :report_uri])
2019-05-16 05:49:40 +00:00
headers = [
2018-11-11 06:10:21 +00: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 06:10:21 +00:00
{"x-download-options", "noopen"},
{"content-security-policy", csp_string() <> ";"}
]
2019-05-16 05:49:40 +00: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 06:10:21 +00: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 05:49:40 +00: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 05:49:40 +00:00
main_part = [
2018-11-11 06:10:21 +00: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 05:49:40 +00:00
script_src
2018-11-11 06:10:21 +00:00
]
2019-05-16 05:49:40 +00: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 06:10:21 +00:00
|> Enum.join("; ")
end
2018-11-11 06:50:28 +00:00
defp maybe_send_sts_header(conn, true) do
2018-11-12 15:08:02 +00:00
max_age_sts = Config.get([:http_security, :sts_max_age])
max_age_ct = Config.get([:http_security, :ct_max_age])
2018-11-11 06:50:28 +00: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 06:50:28 +00:00
])
end
defp maybe_send_sts_header(conn, _), do: conn
2018-11-11 06:10:21 +00:00
end