Class: Brakeman::Config
- Inherits:
-
Object
- Object
- Brakeman::Config
- Includes:
- Util
- Defined in:
- lib/brakeman/tracker/config.rb
Constant Summary
Constants included from Util
Util::ALL_COOKIES, Util::ALL_PARAMETERS, Util::COOKIES, Util::COOKIES_SEXP, Util::DIR_CONST, Util::LITERALS, 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, Util::SIMPLE_LITERALS
Instance Attribute Summary collapse
-
#erubis ⇒ Object
writeonly
Sets the attribute erubis.
-
#escape_html ⇒ Object
writeonly
Sets the attribute escape_html.
-
#gems ⇒ Object
readonly
Returns the value of attribute gems.
-
#rails ⇒ Object
readonly
Returns the value of attribute rails.
-
#ruby_version ⇒ Object
readonly
Returns the value of attribute ruby_version.
-
#tracker ⇒ Object
readonly
Returns the value of attribute tracker.
Instance Method Summary collapse
- #add_gem(name, version, file, line) ⇒ Object
- #default_protect_from_forgery? ⇒ Boolean
- #erubis? ⇒ Boolean
- #escape_filter_interpolations? ⇒ Boolean
- #escape_html? ⇒ Boolean
- #escape_html_entities_in_json? ⇒ Boolean
- #extract_version(version) ⇒ Object
- #gem_version(name) ⇒ Object
- #get_gem(name) ⇒ Object
- #has_gem?(name) ⇒ Boolean
-
#initialize(tracker) ⇒ Config
constructor
A new instance of Config.
-
#load_rails_defaults ⇒ Object
Load defaults based on config.load_defaults value as documented here: guides.rubyonrails.org/configuring.html#results-of-config-load-defaults.
- #rails_version ⇒ Object
- #session_settings ⇒ Object
-
#set_rails_config(value:, path:, overwrite: false) ⇒ Object
Set Rails config option value where path is an array of attributes, e.g.
- #set_rails_version(version = nil) ⇒ Object
- #set_ruby_version(version, file, line) ⇒ Object
-
#version_between?(low_version, high_version, current_version = nil) ⇒ Boolean
Returns true if low_version <= RAILS_VERSION <= high_version.
- #whitelist_attributes? ⇒ Boolean
Methods included from Util
#all_literals?, #array?, #block?, #call?, #camelize, #class_name, #constant?, #contains_class?, #cookies?, #dir_glob?, #false?, #hash?, #hash_access, #hash_insert, #hash_iterate, #hash_values, #integer?, #kwsplat?, #literal?, #make_call, #node_type?, #number?, #params?, #pluralize, #recurse_check?, #regexp?, #remove_kwsplat, #request_headers?, #request_value?, #result?, #safe_literal, #safe_literal?, #safe_literal_target?, #set_env_defaults, #sexp?, #simple_literal?, #string?, #string_interp?, #symbol?, #template_path_to_name, #true?, #underscore
Constructor Details
#initialize(tracker) ⇒ Config
Returns a new instance of Config.
10 11 12 13 14 15 16 17 18 19 |
# File 'lib/brakeman/tracker/config.rb', line 10 def initialize tracker @tracker = tracker @rails = {} @gems = {} @settings = {} @escape_html = nil @erubis = nil @ruby_version = nil @rails_version = nil end |
Instance Attribute Details
#erubis=(value) ⇒ Object (writeonly)
Sets the attribute erubis
8 9 10 |
# File 'lib/brakeman/tracker/config.rb', line 8 def erubis=(value) @erubis = value end |
#escape_html=(value) ⇒ Object (writeonly)
Sets the attribute escape_html
8 9 10 |
# File 'lib/brakeman/tracker/config.rb', line 8 def escape_html=(value) @escape_html = value end |
#gems ⇒ Object (readonly)
Returns the value of attribute gems.
7 8 9 |
# File 'lib/brakeman/tracker/config.rb', line 7 def gems @gems end |
#rails ⇒ Object (readonly)
Returns the value of attribute rails.
7 8 9 |
# File 'lib/brakeman/tracker/config.rb', line 7 def rails @rails end |
#ruby_version ⇒ Object (readonly)
Returns the value of attribute ruby_version.
7 8 9 |
# File 'lib/brakeman/tracker/config.rb', line 7 def ruby_version @ruby_version end |
#tracker ⇒ Object (readonly)
Returns the value of attribute tracker.
7 8 9 |
# File 'lib/brakeman/tracker/config.rb', line 7 def tracker @tracker end |
Instance Method Details
#add_gem(name, version, file, line) ⇒ Object
58 59 60 61 62 63 64 65 |
# File 'lib/brakeman/tracker/config.rb', line 58 def add_gem name, version, file, line name = name.to_sym @gems[name] = { :version => version, :file => file, :line => line } end |
#default_protect_from_forgery? ⇒ Boolean
21 22 23 24 25 26 27 28 29 |
# File 'lib/brakeman/tracker/config.rb', line 21 def default_protect_from_forgery? if version_between? "5.2.0.beta1", "9.9.9" if @rails.dig(:action_controller, :default_protect_from_forgery) == Sexp.new(:true) return true end end false end |
#erubis? ⇒ Boolean
31 32 33 |
# File 'lib/brakeman/tracker/config.rb', line 31 def erubis? @erubis end |
#escape_filter_interpolations? ⇒ Boolean
44 45 46 47 48 |
# File 'lib/brakeman/tracker/config.rb', line 44 def escape_filter_interpolations? # TODO see if app is actually turning this off itself has_gem?(:haml) and version_between? "5.0.0", "5.99", gem_version(:haml) end |
#escape_html? ⇒ Boolean
35 36 37 |
# File 'lib/brakeman/tracker/config.rb', line 35 def escape_html? @escape_html end |
#escape_html_entities_in_json? ⇒ Boolean
39 40 41 42 |
# File 'lib/brakeman/tracker/config.rb', line 39 def escape_html_entities_in_json? #TODO add version-specific information here true? @rails.dig(:active_support, :escape_html_entities_in_json) end |
#extract_version(version) ⇒ Object
143 144 145 146 147 |
# File 'lib/brakeman/tracker/config.rb', line 143 def extract_version version return unless version.is_a? String version[/\d+\.\d+(\.\d+.*)?/] end |
#gem_version(name) ⇒ Object
54 55 56 |
# File 'lib/brakeman/tracker/config.rb', line 54 def gem_version name extract_version @gems.dig(name.to_sym, :version) end |
#get_gem(name) ⇒ Object
71 72 73 |
# File 'lib/brakeman/tracker/config.rb', line 71 def get_gem name @gems[name.to_sym] end |
#has_gem?(name) ⇒ Boolean
67 68 69 |
# File 'lib/brakeman/tracker/config.rb', line 67 def has_gem? name !!@gems[name.to_sym] end |
#load_rails_defaults ⇒ Object
Load defaults based on config.load_defaults value as documented here: guides.rubyonrails.org/configuring.html#results-of-config-load-defaults
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/brakeman/tracker/config.rb', line 199 def load_rails_defaults return unless node_type? tracker.config.rails[:load_defaults], :lit, :str version = tracker.config.rails[:load_defaults].value.to_s unless version.match?(/^\d+\.\d+$/) Brakeman.debug "[Notice] Unknown version: #{tracker.config.rails[:load_defaults]}" return end true_value = Sexp.new(:true) false_value = Sexp.new(:false) if version >= '5.0' set_rails_config(value: true_value, path: [:action_controller, :per_form_csrf_tokens]) set_rails_config(value: true_value, path: [:action_controller, :forgery_protection_origin_check]) set_rails_config(value: true_value, path: [:active_record, :belongs_to_required_by_default]) # Note: this may need to be changed, because ssl_options is a Hash set_rails_config(value: true_value, path: [:ssl_options, :hsts, :subdomains]) end if version >= '5.1' set_rails_config(value: false_value, path: [:assets, :unknown_asset_fallback]) set_rails_config(value: true_value, path: [:action_view, :form_with_generates_remote_forms]) end if version >= '5.2' set_rails_config(value: true_value, path: [:active_record, :cache_versioning]) set_rails_config(value: true_value, path: [:action_dispatch, :use_authenticated_cookie_encryption]) set_rails_config(value: true_value, path: [:active_support, :use_authenticated_message_encryption]) set_rails_config(value: true_value, path: [:active_support, :use_sha1_digests]) set_rails_config(value: true_value, path: [:action_controller, :default_protect_from_forgery]) set_rails_config(value: true_value, path: [:action_view, :form_with_generates_ids]) end if version >= '6.0' set_rails_config(value: Sexp.new(:lit, :zeitwerk), path: [:autoloader]) set_rails_config(value: false_value, path: [:action_view, :default_enforce_utf8]) set_rails_config(value: true_value, path: [:action_dispatch, :use_cookies_with_metadata]) set_rails_config(value: false_value, path: [:action_dispatch, :return_only_media_type_on_content_type]) set_rails_config(value: Sexp.new(:str, 'ActionMailer::MailDeliveryJob'), path: [:action_mailer, :delivery_job]) set_rails_config(value: true_value, path: [:active_job, :return_false_on_aborted_enqueue]) set_rails_config(value: Sexp.new(:lit, :active_storage_analysis), path: [:active_storage, :queues, :analysis]) set_rails_config(value: Sexp.new(:lit, :active_storage_purge), path: [:active_storage, :queues, :purge]) set_rails_config(value: true_value, path: [:active_storage, :replace_on_assign_to_many]) set_rails_config(value: true_value, path: [:active_record, :collection_cache_versioning]) end if version >= '6.1' set_rails_config(value: true_value, path: [:action_controller, :urlsafe_csrf_tokens]) set_rails_config(value: Sexp.new(:lit, :lax), path: [:action_dispatch, :cookies_same_site_protection]) set_rails_config(value: Sexp.new(:lit, 308), path: [:action_dispatch, :ssl_default_redirect_status]) set_rails_config(value: false_value, path: [:action_view, :form_with_generates_remote_forms]) set_rails_config(value: true_value, path: [:action_view, :preload_links_header]) set_rails_config(value: Sexp.new(:lit, 0.15), path: [:active_job, :retry_jitter]) set_rails_config(value: true_value, path: [:active_record, :has_many_inversing]) set_rails_config(value: false_value, path: [:active_record, :legacy_connection_handling]) set_rails_config(value: true_value, path: [:active_storage, :track_variants]) end if version >= '7.0' video_args = Sexp.new(:str, "-vf 'select=eq(n\\,0)+eq(key\\,1)+gt(scene\\,0.015),loop=loop=-1:size=2,trim=start_frame=1' -frames:v 1 -f image2") hash_class = s(:colon2, s(:colon2, s(:const, :OpenSSL), :Digest), :SHA256) set_rails_config(value: true_value, path: [:action_controller, :raise_on_open_redirects]) set_rails_config(value: true_value, path: [:action_controller, :wrap_parameters_by_default]) set_rails_config(value: Sexp.new(:lit, :json), path: [:action_dispatch, :cookies_serializer]) set_rails_config(value: false_value, path: [:action_dispatch, :return_only_request_media_type_on_content_type]) set_rails_config(value: Sexp.new(:lit, 5), path: [:action_mailer, :smtp_timeout]) set_rails_config(value: false_value, path: [:action_view, :apply_stylesheet_media_default]) set_rails_config(value: true_value, path: [:ction_view, :button_to_generates_button_tag]) set_rails_config(value: true_value, path: [:active_record, :automatic_scope_inversing]) set_rails_config(value: false_value, path: [:active_record, :partial_inserts]) set_rails_config(value: true_value, path: [:active_record, :verify_foreign_keys_for_fixtures]) set_rails_config(value: true_value, path: [:active_storage, :multiple_file_field_include_hidden]) set_rails_config(value: Sexp.new(:lit, :vips), path: [:active_storage, :variant_processor]) set_rails_config(value: video_args, path: [:active_storage, :video_preview_arguments]) set_rails_config(value: Sexp.new(:lit, 7.0), path: [:active_support, :cache_format_version]) set_rails_config(value: true_value, path: [:active_support, :disable_to_s_conversion]) set_rails_config(value: true_value, path: [:active_support, :executor_around_test_case]) set_rails_config(value: hash_class, path: [:active_support, :hash_digest_class]) set_rails_config(value: Sexp.new(:lit, :thread), path: [:active_support, :isolation_level]) set_rails_config(value: hash_class, path: [:active_support, :key_generator_hash_digest_class]) set_rails_config(value: true_value, path: [:active_support, :remove_deprecated_time_with_zone_name]) set_rails_config(value: true_value, path: [:active_support, :use_rfc4122_namespaced_uuids]) end end |
#rails_version ⇒ Object
132 133 134 135 136 |
# File 'lib/brakeman/tracker/config.rb', line 132 def rails_version # This needs to be here because Util#rails_version calls Tracker::Config#rails_version # but Tracker::Config includes Util... @rails_version end |
#session_settings ⇒ Object
163 164 165 |
# File 'lib/brakeman/tracker/config.rb', line 163 def session_settings @rails.dig(:action_controller, :session) end |
#set_rails_config(value:, path:, overwrite: false) ⇒ Object
Set Rails config option value where path is an array of attributes, e.g.
:action_controller, :perform_caching
then this will set
rails[:action_controller][:perform_caching] = value
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/brakeman/tracker/config.rb', line 176 def set_rails_config value:, path:, overwrite: false config = self.rails path[0..-2].each do |o| config[o] ||= {} option = config[o] if not option.is_a? Hash Brakeman.debug "[Notice] Skipping config setting: #{path.map(&:to_s).join(".")}" return end config = option end if overwrite || config[path.last].nil? config[path.last] = value end end |
#set_rails_version(version = nil) ⇒ Object
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 126 127 128 129 130 |
# File 'lib/brakeman/tracker/config.rb', line 75 def set_rails_version version = nil version = if version # Only used by Rails2ConfigProcessor right now extract_version(version) else gem_version(:rails) || gem_version(:railties) || gem_version(:activerecord) end if version @rails_version = version if tracker.[:rails3].nil? and tracker.[:rails4].nil? if @rails_version.start_with? "3" tracker.[:rails3] = true Brakeman.notify "[Notice] Detected Rails 3 application" elsif @rails_version.start_with? "4" tracker.[:rails3] = true tracker.[:rails4] = true Brakeman.notify "[Notice] Detected Rails 4 application" elsif @rails_version.start_with? "5" tracker.[:rails3] = true tracker.[:rails4] = true tracker.[:rails5] = true Brakeman.notify "[Notice] Detected Rails 5 application" elsif @rails_version.start_with? "6" tracker.[:rails3] = true tracker.[:rails4] = true tracker.[:rails5] = true tracker.[:rails6] = true Brakeman.notify "[Notice] Detected Rails 6 application" elsif @rails_version.start_with? "7" tracker.[:rails3] = true tracker.[:rails4] = true tracker.[:rails5] = true tracker.[:rails6] = true tracker.[:rails7] = true Brakeman.notify "[Notice] Detected Rails 7 application" elsif @rails_version.start_with? "8" tracker.[:rails3] = true tracker.[:rails4] = true tracker.[:rails5] = true tracker.[:rails6] = true tracker.[:rails7] = true tracker.[:rails8] = true Brakeman.notify "[Notice] Detected Rails 8 application" end end end if get_gem :rails_xss @escape_html = true Brakeman.notify "[Notice] Escaping HTML by default" end end |
#set_ruby_version(version, file, line) ⇒ Object
138 139 140 141 |
# File 'lib/brakeman/tracker/config.rb', line 138 def set_ruby_version version, file, line @ruby_version = extract_version(version) add_gem :ruby, @ruby_version, file, line end |
#version_between?(low_version, high_version, current_version = nil) ⇒ Boolean
Returns true if low_version <= RAILS_VERSION <= high_version
If the Rails version is unknown, returns false.
152 153 154 155 156 157 158 159 160 161 |
# File 'lib/brakeman/tracker/config.rb', line 152 def version_between? low_version, high_version, current_version = nil current_version ||= rails_version return false unless current_version low = Gem::Version.new(low_version) high = Gem::Version.new(high_version) current = Gem::Version.new(current_version) current.between?(low, high) end |
#whitelist_attributes? ⇒ Boolean
50 51 52 |
# File 'lib/brakeman/tracker/config.rb', line 50 def whitelist_attributes? @rails.dig(:active_record, :whitelist_attributes) == Sexp.new(:true) end |