Class: Brakeman::CheckResponseSplitting
- Inherits:
-
BaseCheck
- Object
- SexpProcessor
- BaseCheck
- Brakeman::CheckResponseSplitting
- Defined in:
- lib/brakeman/checks/check_response_splitting.rb
Overview
Warn about response splitting in Rails versions before 2.3.13 groups.google.com/group/rubyonrails-security/browse_thread/thread/6ffc93bde0298768
Constant Summary
Constant Summary
Constants inherited from BaseCheck
Constants included from Util
Util::ALL_PARAMETERS, Util::COOKIES, Util::PARAMETERS, Util::PATH_PARAMETERS, Util::QUERY_PARAMETERS, Util::REQUEST_PARAMETERS, Util::SESSION
Instance Attribute Summary
Attributes inherited from BaseCheck
Instance Method Summary (collapse)
Methods inherited from BaseCheck
#add_result, #initialize, #process_call, #process_cookies, #process_default, #process_params
Methods included from Util
#array?, #call?, #camelize, #cookies?, #false?, #hash?, #hash_insert, #hash_iterate, #integer?, #number?, #params?, #pluralize, #regexp?, #result?, #set_env_defaults, #sexp?, #string?, #symbol?, #true?, #underscore
Methods included from ProcessorHelper
Constructor Details
This class inherits a constructor from Brakeman::BaseCheck
Instance Method Details
- (Object) run_check
8 9 10 11 12 13 14 15 16 |
# File 'lib/brakeman/checks/check_response_splitting.rb', line 8 def run_check if version_between?('2.3.0', '2.3.13') warn :warning_type => "Response Splitting", :message => "Versions before 2.3.14 have a vulnerability content type handling allowing injection of headers: CVE-2011-3186", :confidence => CONFIDENCE[:med], :file => gemfile_or_environment end end |