Class: Dawn::Kb::OwaspRorCheatSheet::Csrf
- Inherits:
-
Object
- Object
- Dawn::Kb::OwaspRorCheatSheet::Csrf
- Includes:
- PatternMatchCheck
- Defined in:
- lib/dawn/kb/owasp_ror_cheatsheet/csrf.rb
Constant Summary
Constants included from PatternMatchCheck
PatternMatchCheck::EXCLUSION_LIST
Constants included from BasicCheck
Instance Attribute Summary
Attributes included from PatternMatchCheck
#attack_pattern, #attack_pattern_is_regex, #avoid_comments, #negative_search, #root_dir
Attributes included from BasicCheck
#applies, #aux_links, #check_family, #cve, #cvss, #cwe, #debug, #evidences, #fixes_version, #kind, #message, #mitigated, #name, #osvdb, #owasp, #priority, #release_date, #remediation, #ruby_version, #ruby_vulnerable_versions, #severity, #status, #target_version, #title
Instance Method Summary collapse
-
#initialize ⇒ Csrf
constructor
A new instance of Csrf.
Methods included from PatternMatchCheck
Methods included from BasicCheck
#applies_to?, #cve_link, #cvss_score, families, #family, #family=, #lint, #mitigated?, #nvd_link, #osvdb_link, #rubysec_advisories_link
Methods included from Utils
#__debug_me_and_return, #debug_me, #debug_me_and_return_false, #debug_me_and_return_true
Constructor Details
#initialize ⇒ Csrf
Returns a new instance of Csrf.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/dawn/kb/owasp_ror_cheatsheet/csrf.rb', line 7 def initialize = "Ruby on Rails has specific, built in support for CSRF tokens. To enable it, or ensure that it is enabled, find the base ApplicationController and look for the protect_from_forgery directive. Note that by default Rails does not provide CSRF protection for any HTTP GET request." super({ :name=>"Owasp Ror CheatSheet: Cross Site Request Forgery", :kind=>Dawn::KnowledgeBase::PATTERN_MATCH_CHECK, :applies=>["rails"], :glob=>"application_controller.rb", :aux_links=>["https://www.owasp.org/index.php/Ruby_on_Rails_Cheatsheet"], :message=>, :attack_pattern => ["protect_from_forgery"], :negative_search=>true, :mitigation=>"Make sure you are using Rails protect_from_forgery facilities in application_controller.rMake sure you are using Rails protect_from_forgery facilities in application_controller.rb", :severity=>:info, :check_family=>:owasp_ror_cheatsheet }) # @debug = true end |