You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my app, I use the secure_headers gem, which takes care of all the issues reported by the Owasp Ror Cheatsheet Security Related Headers. It would be great if dawnscanner could check these two things:
That the secure_headers gem is present in the app's Gemfile.lock
That the application_controller.rb contains the following lines:
includeSecureHeadersensure_security_headers
If both of those conditions are met, then the Security Related Headers issue should not be reported.
The text was updated successfully, but these errors were encountered:
Actually, ensure_security_headers has been removed in version 3.0 of secure_headers, so perhaps just making sure it's in Gemfile.lock is enough? Another thing that could be checked is that the default configuration hasn't been changed for these headers:
In my app, I use the secure_headers gem, which takes care of all the issues reported by the Owasp Ror Cheatsheet Security Related Headers. It would be great if dawnscanner could check these two things:
That the secure_headers gem is present in the app's Gemfile.lock
That the
application_controller.rb
contains the following lines:If both of those conditions are met, then the Security Related Headers issue should not be reported.
The text was updated successfully, but these errors were encountered: