class ActionDispatch::ContentSecurityPolicy
Политика безопасности контента Action Dispatch
Настраивает заголовок ответа HTTP [Content-Security-Policy] (developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy), помогая защититься от атак XSS и инъекций.
Пример глобальной политики:
Rails.application.config.content_security_policy do |policy| policy.default_src :self, :https policy.font_src :self, :https, :data policy.img_src :self, :https, :data policy.object_src :none policy.script_src :self, :https policy.style_src :self, :https # Specify URI for violation reports policy.report_uri "/csp-violation-report-endpoint" end
Атрибуты
Открытые методы класса
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 177
def initialize
@directives = {}
yield self if block_given?
end Открытые методы экземпляра
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 205
def block_all_mixed_content(enabled = true)
if enabled
@directives["block-all-mixed-content"] = true
else
@directives.delete("block-all-mixed-content")
end
end Указывает, нужно ли запрещать пользовательскому агенту загружать любые ресурсы по протоколу HTTP, когда страница использует HTTPS:
policy.block_all_mixed_content
Передайте false чтобы снова разрешить:
policy.block_all_mixed_content false
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 297
def build(context = nil, nonce = nil, nonce_directives = nil)
nonce_directives = DEFAULT_NONCE_DIRECTIVES if nonce_directives.nil?
build_directives(context, nonce, nonce_directives).compact.join("; ")
end # File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 182 def initialize_copy(other) @directives = other.directives.deep_dup end
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 221
def plugin_types(*types)
if types.first
@directives["plugin-types"] = types
else
@directives.delete("plugin-types")
end
end Ограничивает набор плагинов, которые могут быть встроены:
policy.plugin_types "application/x-shockwave-flash"
Оставьте пустым, чтобы разрешить все плагины:
policy.plugin_types
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 236 def report_uri(uri) @directives["report-uri"] = [uri] end
Включает директиву [report-uri] (developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/report-uri). Отчёты о нарушениях будут отправляться по указанному URI:
policy.report_uri "/csp-violation-report-endpoint"
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 249
def require_sri_for(*types)
if types.first
@directives["require-sri-for"] = types
else
@directives.delete("require-sri-for")
end
end Указывает типы активов, для которых требуется [Subresource Integrity] (developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity):
policy.require_sri_for :script, :style
Оставьте пустым, чтобы не требовать Subresource Integrity:
policy.require_sri_for
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 271
def sandbox(*values)
if values.empty?
@directives["sandbox"] = true
elsif values.first
@directives["sandbox"] = values
else
@directives.delete("sandbox")
end
end Указывает, нужно ли включить [sandbox] (developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/sandbox) для запрашиваемого ресурса:
policy.sandbox
Значения могут быть переданы в качестве аргументов:
policy.sandbox "allow-scripts", "allow-modals"
Передайте false чтобы отключить sandbox:
policy.sandbox false
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 289
def upgrade_insecure_requests(enabled = true)
if enabled
@directives["upgrade-insecure-requests"] = true
else
@directives.delete("upgrade-insecure-requests")
end
end Указывает, нужно ли пользовательским агентам обрабатывать любые ресурсы по протоколу HTTP как HTTPS:
policy.upgrade_insecure_requests
Передайте false чтобы отключить:
policy.upgrade_insecure_requests false
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.