Popularity
0.3
Stable
Activity
0.0
Stable
1
2
0

Description

Rack::ContentSecurityPolicy is a Rack middleware that makes it easy for your Rack based application (Sinatra, Rails) to serve Content Security Policy headers for HTML pages.

This middleware was inspired by the p0deje/content-security-policy middleware and borrows quite a bit of code from that gem. This gem also makes extensive use of the contracts gem to enforce strict type checking and validation on all inputs and outputs. It is designed to fail-fast on errors.

It provides full support for Content Security Policy Level 1/2/3 directives.

Code Quality Rank: L5
Monthly Downloads: 65
Programming language: Ruby
License: MIT License
Tags: Security     Rack     Content Security Policy     CSP     Middleware    
Latest version: v0.1.2

Rack::ContentSecurityPolicy alternatives and similar gems

Based on the "Security" category.
Alternatively, view Rack::ContentSecurityPolicy alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Rack::ContentSecurityPolicy or a related project?

Add another 'Security' Gem

README

Rack::ContentSecurityPolicy

Build Status Code Climate

About

Rack::ContentSecurityPolicy is a Rack middleware that makes it easy for your Rack based application (Sinatra, Rails) to serve an Content-Security-Policy or Content-Security-Policy-Report-Only header.

This middleware was inspired by the p0deje/content-security-policy middleware and borrows quite a bit of code from that gem. This gem also makes extensive use of the contracts gem to enforce strict type checking and validation on all inputs and outputs. It is designed to fail-fast on errors.

It provides full support for Content Security Policy Level 1/2/3 directives.

Installation

Add this line to your application's Gemfile:

gem 'rack-content_security_policy', '~> 0.1'

And then execute:

$ bundle install

Or install it directly with:

$ gem install rack-content_security_policy

Usage

This middleware can be configured with a block or a hash of config options. It accepts two primary configuration options:

  • report_only : boolean true or false. Returns a Content-Security-Policy-Report-Only header instead of Content-Security-Policy when true. Defaults to true.
  • directives : A collection of valid CSP directives provided as key/value pairs. The key must be a lowercase String and must be comprised of the characters [a-z] and the -. The value must also be a String but is not limited to remain flexible as the CSP standards evolve. You can use conditional statements within the configuration block to set values dynamically at startup time. Defaults to an empty config that you must configure. An empty config will raise an exception.

Note that certain CSP directives, such as upgrade-insecure-requests, do not take any arguments. For those, just set the value to true.

Learn more about the Content Security Policy at the following sites:

Block Configuration Example

require 'rack/content_security_policy'

Rack::ContentSecurityPolicy.configure do |d|
  d.report_only = false
  d['default-src'] = "'none'"
  d['script-src']  = "'self'"
  d['upgrade-insecure-requests'] = true
end

use Rack::ContentSecurityPolicy

Hash Configuration Example

require 'rack/content_security_policy'

use Rack::ContentSecurityPolicy, report_only: true, directives: { 'default-src' => "'self'" }

Development

After checking out the repo, run bundle install to install dependencies. Then, run bundle exec rake to run the specs.

To install this gem onto your local machine, run bundle exec rake install.

Installation Security : Signed Ruby Gem

This gem is cryptographically signed. To be sure the gem you install hasn’t been tampered with you can install it using the following method:

Add my public key (if you haven’t already) as a trusted certificate

# Caveat: Gem certificates are trusted globally, such that adding a
# cert.pem for one gem automatically trusts all gems signed by that cert.
gem cert --add <(curl -Ls https://raw.github.com/grempe/rack-content_security_policy/master/certs/gem-public_cert_grempe_2026.pem)

To install, it is possible to specify either HighSecurity or MediumSecurity mode. Since this gem depends on one or more gems that are not cryptographically signed you will likely need to use MediumSecurity. You should receive a warning if any signed gem does not match its signature.

# All signed dependent gems must be verified.
gem install rack-content_security_policy -P MediumSecurity

You can learn more about security and signed Ruby Gems.

Installation Security : Signed Git Commits

Most, if not all, of the commits and tags to this repository are signed with my PGP/GPG code signing key. I have uploaded my code signing public keys to GitHub and you can now verify those signatures with the GitHub UI. See this list of commits and look for the Verified tag next to each commit. You can click on that tag for additional information.

You can also clone the repository and verify the signatures locally using your own GnuPG installation. You can find my certificates and read about how to conduct this verification at https://www.rempe.us/keys/.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/grempe/rack-content_security_policy. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Legal

Copyright

Copyright (c) 2016 Glenn Rempe <[email protected]> (https://www.rempe.us/)

Some portions Copyright (c) 2009-2012 Alexey Rodionov

License

The gem is available as open source under the terms of the MIT License.

Warranty

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the LICENSE.txt file for the specific language governing permissions and limitations under the License.

Thank You!

Thanks to Alexey Rodionov (@p0deje) for his well written original implementation of CSP.


*Note that all licence references and agreements mentioned in the Rack::ContentSecurityPolicy README section above are relevant to that project's source code only.