Sha256: 45f4981e28813861c34e35b1ff524665f238f3fed7ce1d1a91ce3d8c69ceca33

Contents?: true

Size: 1.55 KB

Versions: 6

Compression:

Stored size: 1.55 KB

Contents

module Codesake
  module Dawn
    module Kb
      module OwaspRorCheatSheet
        class SecurityRelatedHeaders
          include PatternMatchCheck 

          def initialize
            message = "To set a header value, simply access the response.headers object as a hash inside your controller (often in a before/after_filter). Rails 4 provides the \"default_headers\" functionality that will automatically apply the values supplied. This works for most headers in almost all cases."

            super({
              :name=>"Owasp Ror CheatSheet: Security Related Headers",
              :kind=>Codesake::Dawn::KnowledgeBase::PATTERN_MATCH_CHECK,
              :applies=>["rails"],
              :glob=>"**/controllers/*.rb",
              :aux_links=>["https://www.owasp.org/index.php/Ruby_on_Rails_Cheatsheet"],
              :message=>message,
              :attack_pattern => [
                "response.headers\\['X-Frame-Options'\\] = 'DENY'", 
                "response.headers\\['X-Content-Type-Options'\\] = 'nosniff'", 
                "response.headers\\['X-XSS-Protection'\\] = '1'", 
                "ActionDispatch::Response.default_headers = {	  	
                    'X-Frame-Options' => 'DENY', 	
                    'X-Content-Type-Options' => 'nosniff',	  	
                    'X-XSS-Protection' => '1;'
                  }"],
              :negative_search=>true,
              :mitigation=>"Use response headers like X-Frame-Options, X-Content-Type-Options, X-XSS-Protection in your project."
            })
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
codesake-dawn-1.0.6 lib/codesake/dawn/kb/owasp_ror_cheatsheet/security_related_headers.rb
codesake-dawn-1.0.5 lib/codesake/dawn/kb/owasp_ror_cheatsheet/security_related_headers.rb
codesake-dawn-1.0.4 lib/codesake/dawn/kb/owasp_ror_cheatsheet/security_related_headers.rb
codesake-dawn-1.0.3 lib/codesake/dawn/kb/owasp_ror_cheatsheet/security_related_headers.rb
codesake-dawn-1.0.2 lib/codesake/dawn/kb/owasp_ror_cheatsheet/security_related_headers.rb
codesake-dawn-1.0.1 lib/codesake/dawn/kb/owasp_ror_cheatsheet/security_related_headers.rb