secure_headers 3.0.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed9f86aeaa22e01fb8d842a43ff1607cb8083b6a
4
- data.tar.gz: b71a52f6790c7a0f78053695038cb925e2c4895a
3
+ metadata.gz: e2df8c83dc908657d48aa5552696bade1374c288
4
+ data.tar.gz: 590bc0e2c9225ad3a330af1812babd6c129135d8
5
5
  SHA512:
6
- metadata.gz: 699085b909d21178a40e9f109687b3d9dd6dd21bb7250d81a33aca7b682627ad79f0c59941647b82f0492f2d25aae513ad825826d38760c579518b7c2d8ee508
7
- data.tar.gz: 89d8d3c867306921bff9a7f5a09f2708a54eecdce5a57a83cd8c505253afbd46ae67d489beef5cb8f5eba678235110ae50e69f9e82c1391dd53c125ede53cb73
6
+ metadata.gz: f6b8665ddd8e15bfd9f9e5fe2d330e9e7e9cc1386813883613e295e6d114c072f8bb1713871fde12e9feb8a3df8f691b39477a9db8daeb90f49013ecf44e7b8d
7
+ data.tar.gz: 713914b24728468981c723801891e07eeee044f63d7eca97106ef0c0d0376cc0ed4a00ae49177c14d83a5ef445c1cb0b7d6e43472446042f6ee33201f99c2001
data/.gitignore CHANGED
@@ -6,17 +6,8 @@
6
6
  .yardoc
7
7
  *.log
8
8
  Gemfile.lock
9
- InstalledFiles
10
9
  _yardoc
11
10
  coverage
12
- doc/
13
- lib/bundler/man
14
11
  pkg
15
12
  rdoc
16
13
  spec/reports
17
- test/tmp
18
- test/version_tmp
19
- *tmp
20
- *.sqlite3
21
- fixtures/rails_3_2_12_no_init/log
22
- fixtures/rails_3_2_12/log
data/.travis.yml CHANGED
@@ -1,13 +1,21 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - "2.2"
5
- - "2.1"
6
- - "2.0.0"
7
- - "1.9.3"
8
- - "jruby-19mode"
4
+ - ruby-head
5
+ - 2.2
6
+ - 2.1
7
+ - 2.0.0
8
+ - 1.9.3
9
+ - jruby-19mode
10
+ - jruby-head
11
+
12
+ matrix:
13
+ allow_failures:
14
+ - rvm: jruby-head
15
+ - rvm: ruby-head
9
16
 
10
17
  before_install: gem update bundler
18
+ bundler_args: --without guard -j 3
11
19
 
12
20
  sudo: false
13
21
  cache: bundler
data/CHANGELOG.md CHANGED
@@ -1,3 +1,51 @@
1
+ ## 3.1.1 Bug fix for regression
2
+
3
+ See https://github.com/twitter/secureheaders/pull/235
4
+
5
+ `idempotent_additions?` would return false when comparing `OPT_OUT` with `OPT_OUT`, causing `header_hash_for` to return a header cache with `{ nil => nil }` which cause the middleware to blow up when `{ nil => nil }` was merged into the rack header hash.
6
+
7
+ This is a regression in 3.1.0 only.
8
+
9
+ Now it returns true. I've added a test case to ensure that `header_hash_for` will never return such an element.
10
+
11
+ ## 3.1.0 Adding secure cookie support
12
+
13
+ New feature: marking all cookies as secure. Added by @jmera in https://github.com/twitter/secureheaders/pull/231. In the future, we'll probably add the ability to whitelist individual cookies that should not be marked secure. PRs welcome.
14
+
15
+ Internal refactoring: In https://github.com/twitter/secureheaders/pull/232, we changed the way dynamic CSP is handled internally. The biggest benefit is that highly dynamic policies (which can happen with multiple `append/override` calls per request) are handled better:
16
+
17
+ 1. Only the CSP header cache is busted when using a dynamic policy. All other headers are preserved and don't need to be generated. Dynamic X-Frame-Options changes modify the cache directly.
18
+ 1. Idempotency checks for policy modifications are deferred until the end of the request lifecycle and only happen once, instead of per `append/override` call. The idempotency check itself is fairly expensive itself.
19
+ 1. CSP header string is produced at most once per request.
20
+
21
+ ## 3.0.3
22
+
23
+ Bug fix for handling policy merges where appending a non-default source value (report-uri, plugin-types, frame-ancestors, base-uri, and form-action) would be combined with the default-src value. Appending a directive that doesn't exist in the current policy combines the new value with `default-src` to mimic the actual behavior of the addition. However, this does not make sense for non-default-src values (a.k.a. "fetch directives") and can lead to unexpected behavior like a `report-uri` value of `*`. Previously, this config:
24
+
25
+ ```
26
+ {
27
+ default_src => %w(*)
28
+ }
29
+ ```
30
+
31
+ When appending:
32
+
33
+ ```
34
+ {
35
+ report_uri => %w(https://report-uri.io/asdf)
36
+ }
37
+ ```
38
+
39
+ Would result in `default-src *; report-uri *` which doesn't make any sense at all.
40
+
41
+ ## 3.0.2
42
+
43
+ Bug fix for handling CSP configs that supply a frozen hash. If a directive value is `nil`, then appending to a config with a frozen hash would cause an error since we're trying to modify a frozen hash. See https://github.com/twitter/secureheaders/pull/223.
44
+
45
+ ## 3.0.1
46
+
47
+ Adds `upgrade-insecure-requests` support for requests from Firefox and Chrome (and Opera). See [the spec](https://www.w3.org/TR/upgrade-insecure-requests/) for details.
48
+
1
49
  ## 3.0.0
2
50
 
3
51
  secure_headers 3.0.0 is a near-complete, not-entirely-backward-compatible rewrite. Please see the [upgrade guide](https://github.com/twitter/secureheaders/blob/master/upgrading-to-3-0.md) for an in-depth explanation of the changes and the suggested upgrade path.
data/Gemfile CHANGED
@@ -6,9 +6,12 @@ group :test do
6
6
  gem "tins", "~> 1.6.0" # 1.7 requires ruby 2.0
7
7
  gem "pry-nav"
8
8
  gem "rack"
9
+ gem "rspec"
10
+ gem "coveralls"
11
+ end
12
+
13
+ group :guard do
9
14
  gem "guard-rspec", platforms: [:ruby_19, :ruby_20, :ruby_21, :ruby_22]
10
- gem "rspec", ">= 3.1"
11
15
  gem "growl"
12
16
  gem "rb-fsevent"
13
- gem "coveralls", platforms: [:ruby_19, :ruby_20, :ruby_21, :ruby_22]
14
17
  end
data/README.md CHANGED
@@ -15,6 +15,8 @@ The gem will automatically apply several headers that are related to security.
15
15
  - X-Permitted-Cross-Domain-Policies - [Restrict Adobe Flash Player's access to data](https://www.adobe.com/devnet/adobe-media-server/articles/cross-domain-xml-for-streaming.html)
16
16
  - Public Key Pinning - Pin certificate fingerprints in the browser to prevent man-in-the-middle attacks due to compromised Certificate Authorities. [Public Key Pinning Specification](https://tools.ietf.org/html/rfc7469)
17
17
 
18
+ It can also mark all http cookies with the secure attribute (when configured to do so).
19
+
18
20
  `secure_headers` is a library with a global config, per request overrides, and rack middleware that enables you customize your application settings.
19
21
 
20
22
  ## Use
@@ -29,7 +31,8 @@ All `nil` values will fallback to their default values. `SecureHeaders::OPT_OUT`
29
31
 
30
32
  ```ruby
31
33
  SecureHeaders::Configuration.default do |config|
32
- config.hsts = "max-age=#{20.years.to_i}"
34
+ config.secure_cookies = true # mark all cookies as "secure"
35
+ config.hsts = "max-age=#{20.years.to_i}; includeSubdomains; preload"
33
36
  config.x_frame_options = "DENY"
34
37
  config.x_content_type_options = "nosniff"
35
38
  config.x_xss_protection = "1; mode=block"
@@ -56,13 +59,14 @@ SecureHeaders::Configuration.default do |config|
56
59
  frame_ancestors: %w('none'),
57
60
  plugin_types: %w(application/x-shockwave-flash),
58
61
  block_all_mixed_content: true, # see [http://www.w3.org/TR/mixed-content/](http://www.w3.org/TR/mixed-content/)
59
- report_uri: %w(https://example.com/uri-directive)
62
+ upgrade_insecure_requests: true, # see https://www.w3.org/TR/upgrade-insecure-requests/
63
+ report_uri: %w(https://report-uri.io/example-csp)
60
64
  }
61
65
  config.hpkp = {
62
66
  report_only: false,
63
67
  max_age: 60.days.to_i,
64
68
  include_subdomains: true,
65
- report_uri: "https://example.com/uri-directive",
69
+ report_uri: "https://report-uri.io/example-hpkp",
66
70
  pins: [
67
71
  {sha256: "abc"},
68
72
  {sha256: "123"}
@@ -130,7 +134,7 @@ By default, a noop configuration is provided. No headers will be set when this d
130
134
  ```ruby
131
135
  class MyController < ApplicationController
132
136
  def index
133
- SecureHeaders::opt_out_of_all_protection(request)
137
+ SecureHeaders.opt_out_of_all_protection(request)
134
138
  end
135
139
  end
136
140
  ```
@@ -174,7 +178,7 @@ When manipulating content security policy, there are a few things to consider. T
174
178
 
175
179
  #### Append to the policy with a directive other than `default_src`
176
180
 
177
- The value of `default_src` is joined with the addition. Note the `https:` is carried over from the `default-src` config. If you do not want this, use `override_content_security_policy_directives` instead. To illustrate:
181
+ The value of `default_src` is joined with the addition if the it is a [fetch directive](https://w3c.github.io/webappsec-csp/#directives-fetch). Note the `https:` is carried over from the `default-src` config. If you do not want this, use `override_content_security_policy_directives` instead. To illustrate:
178
182
 
179
183
  ```ruby
180
184
  ::SecureHeaders::Configuration.default do |config|
@@ -191,7 +195,7 @@ Code | Result
191
195
 
192
196
  #### Nonce
193
197
 
194
- script/style-nonce can be used to whitelist inline content. To do this, call the SecureHeaders::content_security_policy_nonce then set the nonce attributes on the various tags.
198
+ script/style-nonce can be used to whitelist inline content. To do this, call the `SecureHeaders.content_security_policy_nonce` then set the nonce attributes on the various tags.
195
199
 
196
200
  Setting a nonce will also set 'unsafe-inline' for browsers that don't support nonces for backwards compatibility. 'unsafe-inline' is ignored if a nonce is present in a directive in compliant browsers.
197
201
 
@@ -254,7 +258,7 @@ config.hpkp = {
254
258
  {sha256: '73a2c64f9545172c1195efb6616ca5f7afd1df6f245407cafb90de3998a1c97f'}
255
259
  ],
256
260
  report_only: true, # defaults to false (report-only mode)
257
- report_uri: '//example.com/uri-directive',
261
+ report_uri: 'https://report-uri.io/example-hpkp',
258
262
  app_name: 'example',
259
263
  tag_report_uri: true
260
264
  }
@@ -280,49 +284,12 @@ class Donkey < Sinatra::Application
280
284
  set :root, APP_ROOT
281
285
 
282
286
  get '/' do
283
- SecureHeaders.override_x_frame_options(SecureHeaders::OPT_OUT)
287
+ SecureHeaders.override_x_frame_options(request, SecureHeaders::OPT_OUT)
284
288
  haml :index
285
289
  end
286
290
  end
287
291
  ```
288
292
 
289
- ### Using with Padrino
290
-
291
- You can use SecureHeaders for Padrino applications as well:
292
-
293
- In your `Gemfile`:
294
-
295
- ```ruby
296
- gem "secure_headers", require: 'secure_headers'
297
- ```
298
-
299
- then in your `app.rb` file you can:
300
-
301
- ```ruby
302
- Padrino.use(SecureHeaders::Middleware)
303
- require 'secure_headers/padrino'
304
-
305
- module Web
306
- class App < Padrino::Application
307
- register SecureHeaders::Padrino
308
-
309
- get '/' do
310
- render 'index'
311
- end
312
- end
313
- end
314
- ```
315
-
316
- and in `config/boot.rb`:
317
-
318
- ```ruby
319
- def before_load
320
- SecureHeaders::Configuration.default do |config|
321
- ...
322
- end
323
- end
324
- ```
325
-
326
293
  ## Similar libraries
327
294
 
328
295
  * Rack [rack-secure_headers](https://github.com/frodsan/rack-secure_headers)
@@ -333,6 +300,8 @@ end
333
300
  * Python - [django-csp](https://github.com/mozilla/django-csp) + [commonware](https://github.com/jsocol/commonware/); [django-security](https://github.com/sdelements/django-security)
334
301
  * Go - [secureheader](https://github.com/kr/secureheader)
335
302
  * Elixir [secure_headers](https://github.com/anotherhale/secure_headers)
303
+ * Dropwizard [dropwizard-web-security](https://github.com/palantir/dropwizard-web-security)
304
+ * Ember.js [ember-cli-content-security-policy](https://github.com/rwjblue/ember-cli-content-security-policy/)
336
305
 
337
306
  ## License
338
307
 
@@ -3,6 +3,7 @@ module SecureHeaders
3
3
  DEFAULT_CONFIG = :default
4
4
  NOOP_CONFIGURATION = "secure_headers_noop_config"
5
5
  class NotYetConfiguredError < StandardError; end
6
+ class IllegalPolicyModificationError < StandardError; end
6
7
  class << self
7
8
  # Public: Set the global default configuration.
8
9
  #
@@ -23,12 +24,12 @@ module SecureHeaders
23
24
  # if no value is supplied.
24
25
  #
25
26
  # Returns: the newly created config
26
- def override(name, base = DEFAULT_CONFIG)
27
+ def override(name, base = DEFAULT_CONFIG, &block)
27
28
  unless get(base)
28
29
  raise NotYetConfiguredError, "#{base} policy not yet supplied"
29
30
  end
30
31
  override = @configurations[base].dup
31
- yield(override)
32
+ override.instance_eval &block if block_given?
32
33
  add_configuration(name, override)
33
34
  end
34
35
 
@@ -43,18 +44,6 @@ module SecureHeaders
43
44
  @configurations[name]
44
45
  end
45
46
 
46
- # Public: perform a basic deep dup. The shallow copy provided by dup/clone
47
- # can lead to modifying parent objects.
48
- def deep_copy(config)
49
- config.each_with_object({}) do |(key, value), hash|
50
- hash[key] = if value.is_a?(Array)
51
- value.dup
52
- else
53
- value
54
- end
55
- end
56
- end
57
-
58
47
  private
59
48
 
60
49
  # Private: add a valid configuration to the global set of named configs.
@@ -82,20 +71,44 @@ module SecureHeaders
82
71
  ALL_HEADER_CLASSES.each do |klass|
83
72
  config.send("#{klass::CONFIG_KEY}=", OPT_OUT)
84
73
  end
74
+ config.dynamic_csp = OPT_OUT
85
75
  end
86
76
 
87
77
  add_configuration(NOOP_CONFIGURATION, noop_config)
88
78
  end
79
+
80
+ # Public: perform a basic deep dup. The shallow copy provided by dup/clone
81
+ # can lead to modifying parent objects.
82
+ def deep_copy(config)
83
+ config.each_with_object({}) do |(key, value), hash|
84
+ hash[key] = if value.is_a?(Array)
85
+ value.dup
86
+ else
87
+ value
88
+ end
89
+ end
90
+ end
91
+
92
+ # Private: convenience method purely DRY things up. The value may not be a
93
+ # hash (e.g. OPT_OUT, nil)
94
+ def deep_copy_if_hash(value)
95
+ if value.is_a?(Hash)
96
+ deep_copy(value)
97
+ else
98
+ value
99
+ end
100
+ end
89
101
  end
90
102
 
91
- attr_accessor :hsts, :x_frame_options, :x_content_type_options,
92
- :x_xss_protection, :csp, :x_download_options, :x_permitted_cross_domain_policies,
93
- :hpkp
94
- attr_reader :cached_headers
103
+ attr_writer :hsts, :x_frame_options, :x_content_type_options,
104
+ :x_xss_protection, :x_download_options, :x_permitted_cross_domain_policies,
105
+ :hpkp, :dynamic_csp, :secure_cookies
106
+
107
+ attr_reader :cached_headers, :csp, :dynamic_csp, :secure_cookies
95
108
 
96
109
  def initialize(&block)
97
110
  self.hpkp = OPT_OUT
98
- self.csp = self.class.deep_copy(CSP::DEFAULT_CONFIG)
111
+ self.csp = self.class.send(:deep_copy, CSP::DEFAULT_CONFIG)
99
112
  instance_eval &block if block_given?
100
113
  end
101
114
 
@@ -104,33 +117,37 @@ module SecureHeaders
104
117
  # Returns a deep-dup'd copy of this configuration.
105
118
  def dup
106
119
  copy = self.class.new
107
- copy.hsts = hsts
108
- copy.x_frame_options = x_frame_options
109
- copy.x_content_type_options = x_content_type_options
110
- copy.x_xss_protection = x_xss_protection
111
- copy.x_download_options = x_download_options
112
- copy.x_permitted_cross_domain_policies = x_permitted_cross_domain_policies
113
- copy.csp = if csp.is_a?(Hash)
114
- self.class.deep_copy(csp)
115
- else
116
- csp
120
+ copy.secure_cookies = @secure_cookies
121
+ copy.csp = self.class.send(:deep_copy_if_hash, @csp)
122
+ copy.dynamic_csp = self.class.send(:deep_copy_if_hash, @dynamic_csp)
123
+ copy.cached_headers = self.class.send(:deep_copy_if_hash, @cached_headers)
124
+ copy
125
+ end
126
+
127
+ def opt_out(header)
128
+ send("#{header}=", OPT_OUT)
129
+ if header == CSP::CONFIG_KEY
130
+ dynamic_csp = OPT_OUT
117
131
  end
132
+ self.cached_headers.delete(header)
133
+ end
134
+
135
+ def update_x_frame_options(value)
136
+ self.cached_headers[XFrameOptions::CONFIG_KEY] = XFrameOptions.make_header(value)
137
+ end
118
138
 
119
- copy.hpkp = if hpkp.is_a?(Hash)
120
- self.class.deep_copy(hpkp)
121
- else
122
- hpkp
139
+ # Public: generated cached headers for a specific user agent.
140
+ def rebuild_csp_header_cache!(user_agent)
141
+ self.cached_headers[CSP::CONFIG_KEY] = {}
142
+ unless current_csp == OPT_OUT
143
+ user_agent = UserAgent.parse(user_agent)
144
+ variation = CSP.ua_to_variation(user_agent)
145
+ self.cached_headers[CSP::CONFIG_KEY][variation] = CSP.make_header(current_csp, user_agent)
123
146
  end
124
- copy
125
147
  end
126
148
 
127
- # Public: Retrieve a config based on the CONFIG_KEY for a class
128
- #
129
- # Returns the value if available, and returns a dup of any hash values.
130
- def fetch(key)
131
- config = send(key)
132
- config = self.class.deep_copy(config) if config.is_a?(Hash)
133
- config
149
+ def current_csp
150
+ @dynamic_csp || @csp
134
151
  end
135
152
 
136
153
  # Public: validates all configurations values.
@@ -139,16 +156,32 @@ module SecureHeaders
139
156
  #
140
157
  # Returns nothing
141
158
  def validate_config!
142
- StrictTransportSecurity.validate_config!(hsts)
143
- ContentSecurityPolicy.validate_config!(csp)
144
- XFrameOptions.validate_config!(x_frame_options)
145
- XContentTypeOptions.validate_config!(x_content_type_options)
146
- XXssProtection.validate_config!(x_xss_protection)
147
- XDownloadOptions.validate_config!(x_download_options)
148
- XPermittedCrossDomainPolicies.validate_config!(x_permitted_cross_domain_policies)
149
- PublicKeyPins.validate_config!(hpkp)
159
+ StrictTransportSecurity.validate_config!(@hsts)
160
+ ContentSecurityPolicy.validate_config!(@csp)
161
+ XFrameOptions.validate_config!(@x_frame_options)
162
+ XContentTypeOptions.validate_config!(@x_content_type_options)
163
+ XXssProtection.validate_config!(@x_xss_protection)
164
+ XDownloadOptions.validate_config!(@x_download_options)
165
+ XPermittedCrossDomainPolicies.validate_config!(@x_permitted_cross_domain_policies)
166
+ PublicKeyPins.validate_config!(@hpkp)
150
167
  end
151
168
 
169
+ protected
170
+
171
+ def csp=(new_csp)
172
+ if self.dynamic_csp
173
+ raise IllegalPolicyModificationError, "You are attempting to modify CSP settings directly. Use dynamic_csp= isntead."
174
+ end
175
+
176
+ @csp = new_csp
177
+ end
178
+
179
+ def cached_headers=(headers)
180
+ @cached_headers = headers
181
+ end
182
+
183
+ private
184
+
152
185
  # Public: Precompute the header names and values for this configuraiton.
153
186
  # Ensures that headers generated at configure time, not on demand.
154
187
  #
@@ -156,7 +189,7 @@ module SecureHeaders
156
189
  def cache_headers!
157
190
  # generate defaults for the "easy" headers
158
191
  headers = (ALL_HEADERS_BESIDES_CSP).each_with_object({}) do |klass, hash|
159
- config = fetch(klass::CONFIG_KEY)
192
+ config = instance_variable_get("@#{klass::CONFIG_KEY}")
160
193
  unless config == OPT_OUT
161
194
  hash[klass::CONFIG_KEY] = klass.make_header(config).freeze
162
195
  end
@@ -165,7 +198,7 @@ module SecureHeaders
165
198
  generate_csp_headers(headers)
166
199
 
167
200
  headers.freeze
168
- @cached_headers = headers
201
+ self.cached_headers = headers
169
202
  end
170
203
 
171
204
  # Private: adds CSP headers for each variation of CSP support.
@@ -175,11 +208,10 @@ module SecureHeaders
175
208
  #
176
209
  # Returns nothing
177
210
  def generate_csp_headers(headers)
178
- unless csp == OPT_OUT
211
+ unless @csp == OPT_OUT
179
212
  headers[CSP::CONFIG_KEY] = {}
180
-
213
+ csp_config = self.current_csp
181
214
  CSP::VARIATIONS.each do |name, _|
182
- csp_config = fetch(CSP::CONFIG_KEY)
183
215
  csp = CSP.make_header(csp_config, UserAgent.parse(name))
184
216
  headers[CSP::CONFIG_KEY][name] = csp.freeze
185
217
  end