Class: Brakeman::CheckCrossSiteScripting
- Inherits:
-
BaseCheck
- Object
- SexpProcessor
- BaseCheck
- Brakeman::CheckCrossSiteScripting
- Defined in:
- lib/brakeman/checks/check_cross_site_scripting.rb
Overview
This check looks for unescaped output in templates which contains parameters or model attributes.
For example:
<%= User.find(:id).name %> <%= params %>
Direct Known Subclasses
Constant Summary collapse
- IGNORE_MODEL_METHODS =
Model methods which are known to be harmless
Set[:average, :count, :maximum, :minimum, :sum, :id]
- MODEL_METHODS =
Set[:all, :find, :first, :last, :new]
- IGNORE_LIKE =
/^link_to_|(_path|_tag|_url)$/
- HAML_HELPERS =
Sexp.new(:colon2, Sexp.new(:const, :Haml), :Helpers)
- XML_HELPER =
Sexp.new(:colon2, Sexp.new(:const, :Erubis), :XmlHelper)
- URI =
Sexp.new(:const, :URI)
- CGI =
Sexp.new(:const, :CGI)
- FORM_BUILDER =
Sexp.new(:call, Sexp.new(:const, :FormBuilder), :new, Sexp.new(:arglist))
Constants inherited from BaseCheck
Constants included from Util
Util::ALL_PARAMETERS, Util::COOKIES, Util::PARAMETERS, Util::PATH_PARAMETERS, Util::QUERY_PARAMETERS, Util::REQUEST_ENV, Util::REQUEST_PARAMETERS, Util::REQUEST_PARAMS, Util::SESSION
Constants inherited from SexpProcessor
Instance Attribute Summary
Attributes inherited from BaseCheck
Attributes inherited from SexpProcessor
Instance Method Summary collapse
- #actually_process_call(exp) ⇒ Object
- #check_for_immediate_xss(exp) ⇒ Object
-
#process_call(exp) ⇒ Object
Check a call for user input.
-
#process_cookies(exp) ⇒ Object
Note that cookies have been found.
-
#process_escaped_output(exp) ⇒ Object
Look for calls to raw() Otherwise, ignore.
-
#process_format(exp) ⇒ Object
Process as default.
-
#process_format_escaped(exp) ⇒ Object
Ignore output HTML escaped via HAML.
-
#process_if(exp) ⇒ Object
Ignore condition in if Sexp.
-
#process_output(exp) ⇒ Object
Process an output Sexp.
-
#process_params(exp) ⇒ Object
Note that params have been found.
-
#process_render(exp) ⇒ Object
Ignore calls to render.
-
#process_string_interp(exp) ⇒ Object
Process as default.
- #raw_call?(exp) ⇒ Boolean
-
#run_check ⇒ Object
Run check.
Methods inherited from BaseCheck
#add_result, #initialize, #process_default
Methods included from Util
#array?, #call?, #camelize, #contains_class?, #context_for, #cookies?, #false?, #file_by_name, #file_for, #hash?, #hash_access, #hash_insert, #hash_iterate, #integer?, #node_type?, #number?, #params?, #pluralize, #regexp?, #request_env?, #request_value?, #result?, #set_env_defaults, #sexp?, #string?, #symbol?, #table_to_csv, #true?, #truncate_table, #underscore
Methods included from ProcessorHelper
#class_name, #process_all, #process_module
Methods inherited from SexpProcessor
#error_handler, #in_context, #initialize, #process, #process_dummy, #scope
Constructor Details
This class inherits a constructor from Brakeman::BaseCheck
Instance Method Details
#actually_process_call(exp) ⇒ Object
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 222 def actually_process_call exp return if @matched target = exp.target if sexp? target target = process target end method = exp.method args = exp.arglist #Ignore safe items if (target.nil? and (@ignore_methods.include? method or method.to_s =~ IGNORE_LIKE)) or (@matched and @matched.type == :model and IGNORE_MODEL_METHODS.include? method) or (target == HAML_HELPERS and method == :html_escape) or ((target == URI or target == CGI) and method == :escape) or (target == XML_HELPER and method == :escape_xml) or (target == FORM_BUILDER and @ignore_methods.include? method) or (target and @safe_input_attributes.include? method) or (method.to_s[-1,1] == "?") #exp[0] = :ignore #should not be necessary @matched = false elsif sexp? target and model_name? target[1] @matched = Match.new(:model, exp) elsif exp @matched = Match.new(:cookies, exp) elsif @inspect_arguments and params? exp @matched = Match.new(:params, exp) elsif @inspect_arguments process args end end |
#check_for_immediate_xss(exp) ⇒ Object
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 88 def check_for_immediate_xss exp return if duplicate? exp if exp.node_type == :output out = exp.value elsif exp.node_type == :escaped_output and raw_call? exp out = exp.value.first_arg end if input = has_immediate_user_input?(out) add_result exp case input.type when :params = "Unescaped parameter value" when :cookies = "Unescaped cookie value" when :request = "Unescaped request value" else = "Unescaped user input value" end warn :template => @current_template, :warning_type => "Cross Site Scripting", :message => , :code => input.match, :confidence => CONFIDENCE[:high] elsif not tracker.[:ignore_model_output] and match = has_immediate_model?(out) method = match[2] unless IGNORE_MODEL_METHODS.include? method add_result out if MODEL_METHODS.include? method or method.to_s =~ /^find_by/ confidence = CONFIDENCE[:high] else confidence = CONFIDENCE[:med] end = "Unescaped model attribute" link_path = "cross_site_scripting" if node_type?(out, :call, :attrasgn) && out.method == :to_json += " in JSON hash" link_path += "_to_json" end code = find_chain out, match warn :template => @current_template, :warning_type => "Cross Site Scripting", :message => , :code => code, :confidence => confidence, :link_path => link_path end else false end end |
#process_call(exp) ⇒ Object
Check a call for user input
Since we want to report an entire call and not just part of one, use @mark to mark when a call is started. Any dangerous values inside will then report the entire call chain.
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 172 def process_call exp if @mark actually_process_call exp else @mark = true actually_process_call exp = nil if @matched case @matched.type when :model unless tracker.[:ignore_model_output] = "Unescaped model attribute" end when :params = "Unescaped parameter value" when :cookies = "Unescaped cookie value" end if and not duplicate? exp add_result exp link_path = "cross_site_scripting" if @known_dangerous.include? exp.method confidence = CONFIDENCE[:high] if exp.method == :to_json += " in JSON hash" link_path += "_to_json" end else confidence = CONFIDENCE[:low] end warn :template => @current_template, :warning_type => "Cross Site Scripting", :message => , :code => exp, :user_input => @matched.match, :confidence => confidence, :link_path => link_path end end @mark = @matched = false end exp end |
#process_cookies(exp) ⇒ Object
Note that cookies have been found
262 263 264 265 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 262 def exp @matched = Match.new(:cookies, exp) exp end |
#process_escaped_output(exp) ⇒ Object
Look for calls to raw() Otherwise, ignore
157 158 159 160 161 162 163 164 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 157 def process_escaped_output exp unless check_for_immediate_xss exp if raw_call? exp and not duplicate? exp process exp.value.first_arg end end exp end |
#process_format(exp) ⇒ Object
Process as default
278 279 280 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 278 def process_format exp process_default exp end |
#process_format_escaped(exp) ⇒ Object
Ignore output HTML escaped via HAML
283 284 285 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 283 def process_format_escaped exp exp end |
#process_if(exp) ⇒ Object
Ignore condition in if Sexp
288 289 290 291 292 293 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 288 def process_if exp exp[2..-1].each do |e| process e if sexp? e end exp end |
#process_output(exp) ⇒ Object
Process an output Sexp
151 152 153 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 151 def process_output exp process exp.value.dup end |
#process_params(exp) ⇒ Object
Note that params have been found
256 257 258 259 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 256 def process_params exp @matched = Match.new(:params, exp) exp end |
#process_render(exp) ⇒ Object
Ignore calls to render
268 269 270 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 268 def process_render exp exp end |
#process_string_interp(exp) ⇒ Object
Process as default
273 274 275 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 273 def process_string_interp exp process_default exp end |
#raw_call?(exp) ⇒ Boolean
295 296 297 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 295 def raw_call? exp exp.value.node_type == :call and exp.value.method == :raw end |
#run_check ⇒ Object
Run check
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 37 def run_check @ignore_methods = Set[:button_to, :check_box, :content_tag, :escapeHTML, :escape_once, :field_field, :fields_for, :h, :hidden_field, :hidden_field, :hidden_field_tag, :image_tag, :label, :link_to, :mail_to, :radio_button, :select, :submit_tag, :text_area, :text_field, :text_field_tag, :url_encode, :url_for, :will_paginate].merge tracker.[:safe_methods] @models = tracker.models.keys @inspect_arguments = tracker.[:check_arguments] @known_dangerous = Set[:truncate, :concat] if version_between? "2.0.0", "3.0.5" @known_dangerous << :auto_link elsif version_between? "3.0.6", "3.0.99" @ignore_methods << :auto_link end if version_between? "2.0.0", "2.3.14" @known_dangerous << :strip_tags end json_escape_on = false initializers = tracker.check_initializers :ActiveSupport, :escape_html_entities_in_json= initializers.each {|result| json_escape_on = true?(result[-1].first_arg) } if !json_escape_on or version_between? "0.0.0", "2.0.99" @known_dangerous << :to_json Brakeman.debug("Automatic to_json escaping not enabled, consider to_json dangerous") else Brakeman.debug("Automatic to_json escaping is enabled.") end tracker.each_template do |name, template| @current_template = template template[:outputs].each do |out| Brakeman.debug "Checking #{name} for direct XSS" unless check_for_immediate_xss out Brakeman.debug "Checking #{name} for indirect XSS" @matched = false @mark = false process out end end end end |