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
CheckContentTag, CheckLinkTo, CheckRenderInline, CheckSimpleFormat
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)
Constants inherited from BaseCheck
Constants included from Util
Util::ALL_COOKIES, Util::ALL_PARAMETERS, Util::COOKIES, Util::COOKIES_SEXP, Util::PARAMETERS, Util::PARAMS_SEXP, Util::PATH_PARAMETERS, Util::QUERY_PARAMETERS, Util::REQUEST_COOKIES, Util::REQUEST_ENV, Util::REQUEST_PARAMETERS, Util::REQUEST_PARAMS, Util::REQUEST_REQUEST_PARAMETERS, Util::SAFE_LITERAL, Util::SESSION, Util::SESSION_SEXP
Constants inherited from SexpProcessor
Instance Attribute Summary
Attributes inherited from BaseCheck
Attributes inherited from SexpProcessor
Instance Method Summary collapse
- #actually_process_call(exp) ⇒ Object
- #cgi_escaped?(target, method) ⇒ Boolean
- #check_for_immediate_xss(exp) ⇒ Object
- #form_builder_method?(target, method) ⇒ Boolean
- #haml_escaped?(target, method) ⇒ Boolean
- #html_safe_call?(exp) ⇒ Boolean
- #ignore_call?(target, method) ⇒ Boolean
- #ignored_method?(target, method) ⇒ Boolean
- #ignored_model_method?(target, method) ⇒ Boolean
-
#initialize(*args) ⇒ CheckCrossSiteScripting
constructor
A new instance of CheckCrossSiteScripting.
-
#likely_model_attribute?(exp) ⇒ Boolean
Call already involves a model, but might not be acting on a record.
-
#process_call(exp) ⇒ Object
Check a call for user input.
- #process_case(exp) ⇒ Object
-
#process_cookies(exp) ⇒ Object
Note that cookies have been found.
-
#process_dstr(exp) ⇒ Object
Process as default.
-
#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.
- #raw_call?(exp) ⇒ Boolean
-
#run_check ⇒ Object
Run check.
- #safe_input_attribute?(target, method) ⇒ Boolean
- #setup ⇒ Object
- #xml_escaped?(target, method) ⇒ Boolean
Methods inherited from BaseCheck
#add_result, inherited, #process_array, #process_default
Methods included from Messages
#msg, #msg_code, #msg_cve, #msg_file, #msg_input, #msg_lit, #msg_plain, #msg_version
Methods included from Util
#array?, #block?, #call?, #camelize, #class_name, #constant?, #contains_class?, #cookies?, #false?, #hash?, #hash_access, #hash_insert, #hash_iterate, #integer?, #kwsplat?, #make_call, #node_type?, #number?, #params?, #pluralize, #rails_version, #regexp?, #remove_kwsplat, #request_env?, #request_value?, #result?, #safe_literal, #safe_literal?, #safe_literal_target?, #set_env_defaults, #sexp?, #string?, #string_interp?, #symbol?, #template_path_to_name, #true?, #underscore
Methods included from ProcessorHelper
#current_file, #process_all, #process_all!, #process_call_args, #process_call_defn?, #process_class, #process_module
Methods inherited from SexpProcessor
#in_context, #process, processors, #scope
Constructor Details
#initialize(*args) ⇒ CheckCrossSiteScripting
Returns a new instance of CheckCrossSiteScripting.
36 37 38 39 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 36 def initialize *args super @matched = @mark = false end |
Instance Method Details
#actually_process_call(exp) ⇒ Object
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 213 def actually_process_call exp return if @matched target = exp.target if sexp? target target = process target end method = exp.method #Ignore safe items if ignore_call? target, method @matched = false elsif sexp? target and model_name? target[1] #TODO: use method call? @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_call_args exp end end |
#cgi_escaped?(target, method) ⇒ Boolean
366 367 368 369 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 366 def cgi_escaped? target, method method == :escape and (target == URI or target == CGI) end |
#check_for_immediate_xss(exp) ⇒ Object
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 87 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 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 60 def check_for_immediate_xss exp return :duplicate if duplicate? exp if exp.node_type == :output out = exp.value end if raw_call? exp out = exp.value.first_arg elsif html_safe_call? exp out = exp.value.target end return if call? out and ignore_call? out.target, out.method if input = has_immediate_user_input?(out) add_result exp = msg("Unescaped ", msg_input(input)) warn :template => @current_template, :warning_type => "Cross-Site Scripting", :warning_code => :cross_site_scripting, :message => , :code => input.match, :confidence => :high elsif not tracker.[:ignore_model_output] and match = has_immediate_model?(out) method = if call? match match.method else nil end unless IGNORE_MODEL_METHODS.include? method add_result exp if likely_model_attribute? match confidence = :high else confidence = :medium end = "Unescaped model attribute" link_path = "cross_site_scripting" warning_code = :cross_site_scripting if node_type?(out, :call, :safe_call, :attrasgn, :safe_attrasgn) && out.method == :to_json += " in JSON hash" link_path += "_to_json" warning_code = :xss_to_json end warn :template => @current_template, :warning_type => "Cross-Site Scripting", :warning_code => warning_code, :message => , :code => match, :confidence => confidence, :link_path => link_path end else false end end |
#form_builder_method?(target, method) ⇒ Boolean
379 380 381 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 379 def form_builder_method? target, method target == FORM_BUILDER and @ignore_methods.include? method end |
#haml_escaped?(target, method) ⇒ Boolean
371 372 373 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 371 def haml_escaped? target, method method == :html_escape and target == HAML_HELPERS end |
#html_safe_call?(exp) ⇒ Boolean
341 342 343 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 341 def html_safe_call? exp call? exp.value and exp.value.method == :html_safe end |
#ignore_call?(target, method) ⇒ Boolean
345 346 347 348 349 350 351 352 353 354 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 345 def ignore_call? target, method ignored_method?(target, method) or safe_input_attribute?(target, method) or ignored_model_method?(target, method) or form_builder_method?(target, method) or haml_escaped?(target, method) or boolean_method?(method) or cgi_escaped?(target, method) or xml_escaped?(target, method) end |
#ignored_method?(target, method) ⇒ Boolean
362 363 364 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 362 def ignored_method? target, method @ignore_methods.include? method or method.to_s =~ IGNORE_LIKE end |
#ignored_model_method?(target, method) ⇒ Boolean
356 357 358 359 360 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 356 def ignored_model_method? target, method ((@matched and @matched.type == :model) or model_name? target) and IGNORE_MODEL_METHODS.include? method end |
#likely_model_attribute?(exp) ⇒ Boolean
Call already involves a model, but might not be acting on a record
128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 128 def likely_model_attribute? exp return false unless call? exp method = exp.method if MODEL_METHODS.include? method or method.to_s.start_with? "find_by_" true else likely_model_attribute? exp.target 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.
166 167 168 169 170 171 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 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 166 def process_call exp if @mark actually_process_call exp else @mark = true actually_process_call exp = nil if @matched unless @matched.type and tracker.[:ignore_model_output] = msg("Unescaped ", msg_input(@matched)) end if and not duplicate? exp add_result exp link_path = "cross_site_scripting" warning_code = :cross_site_scripting if @known_dangerous.include? exp.method confidence = :high if exp.method == :to_json << msg_plain(" in JSON hash") link_path += "_to_json" warning_code = :xss_to_json end else confidence = :weak end warn :template => @current_template, :warning_type => "Cross-Site Scripting", :warning_code => warning_code, :message => , :code => exp, :user_input => @matched, :confidence => confidence, :link_path => link_path end end @mark = @matched = false end exp end |
#process_case(exp) ⇒ Object
275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 275 def process_case exp #Ignore user input in case value #TODO: also ignore when values current = 2 while current < exp.length process exp[current] if exp[current] current += 1 end exp end |
#process_cookies(exp) ⇒ Object
Note that cookies have been found
243 244 245 246 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 243 def exp @matched = Match.new(:cookies, exp) exp end |
#process_dstr(exp) ⇒ Object
Process as default
254 255 256 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 254 def process_dstr exp process_default exp end |
#process_escaped_output(exp) ⇒ Object
Look for calls to raw() Otherwise, ignore
147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 147 def process_escaped_output exp unless check_for_immediate_xss exp if not duplicate? exp if raw_call? exp process exp.value.first_arg elsif html_safe_call? exp process exp.value.target end end end exp end |
#process_format(exp) ⇒ Object
Process as default
259 260 261 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 259 def process_format exp process_default exp end |
#process_format_escaped(exp) ⇒ Object
Ignore output HTML escaped via HAML
264 265 266 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 264 def process_format_escaped exp exp end |
#process_if(exp) ⇒ Object
Ignore condition in if Sexp
269 270 271 272 273 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 269 def process_if exp process exp.then_clause if sexp? exp.then_clause process exp.else_clause if sexp? exp.else_clause exp end |
#process_output(exp) ⇒ Object
Process an output Sexp
141 142 143 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 141 def process_output exp process exp.value.dup end |
#process_params(exp) ⇒ Object
Note that params have been found
237 238 239 240 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 237 def process_params exp @matched = Match.new(:params, exp) exp end |
#process_render(exp) ⇒ Object
Ignore calls to render
249 250 251 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 249 def process_render exp exp end |
#raw_call?(exp) ⇒ Boolean
337 338 339 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 337 def raw_call? exp exp.value.node_type == :call and exp.value.method == :raw end |
#run_check ⇒ Object
Run check
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 42 def run_check setup tracker.each_template do |name, template| Brakeman.debug "Checking #{name} for XSS" @current_template = template template.each_output do |out| unless check_for_immediate_xss out @matched = false @mark = false process out end end end end |
#safe_input_attribute?(target, method) ⇒ Boolean
383 384 385 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 383 def safe_input_attribute? target, method target and always_safe_method? method end |
#setup ⇒ Object
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 288 def setup @ignore_methods = Set[:==, :!=, :button_to, :check_box, :content_tag, :escapeHTML, :escape_once, :field_field, :fields_for, :form_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, :u, :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" or tracker.config.gem_version(:'rails-html-sanitizer') == '1.0.2' @known_dangerous << :strip_tags end if tracker.config.has_gem? :'rails-html-sanitizer' and version_between? "1.0.0", "1.0.2", tracker.config.gem_version(:'rails-html-sanitizer') @known_dangerous << :sanitize end json_escape_on = false initializers = tracker.find_call(target: :ActiveSupport, method: :escape_html_entities_in_json=) initializers.each {|result| json_escape_on = true?(result[:call].first_arg) } if tracker.config.escape_html_entities_in_json? json_escape_on = true elsif version_between? "4.0.0", "9.9.9" json_escape_on = true end 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 @safe_input_attributes << :to_json Brakeman.debug("Automatic to_json escaping is enabled.") end end |
#xml_escaped?(target, method) ⇒ Boolean
375 376 377 |
# File 'lib/brakeman/checks/check_cross_site_scripting.rb', line 375 def xml_escaped? target, method method == :escape_xml and target == XML_HELPER end |