Class: Brakeman::Rails2ConfigProcessor

Inherits:
BasicProcessor show all
Defined in:
lib/brakeman/processors/lib/rails2_config_processor.rb

Overview

Processes configuration. Results are put in tracker.config.

Configuration of Rails via Rails::Initializer are stored in tracker.config.rails. For example:

Rails::Initializer.run |config|
  config.action_controller.session_store = :cookie_store
end

will be stored in

tracker.config[:rails][:action_controller][:session_store]

Values for tracker.config.rails will still be Sexps.

Constant Summary collapse

RAILS_CONFIG =

Replace block variable in

Rails::Initializer.run |config|

with this value so we can keep track of it.

Sexp.new(:const, :"!BRAKEMAN_RAILS_CONFIG")

Constants included from Util

Util::ALL_PARAMETERS, Util::COOKIES, Util::COOKIES_SEXP, Util::PARAMETERS, Util::PARAMS_SEXP, Util::PATH_PARAMETERS, Util::QUERY_PARAMETERS, Util::REQUEST_ENV, Util::REQUEST_PARAMETERS, Util::REQUEST_PARAMS, Util::SESSION, Util::SESSION_SEXP

Constants inherited from SexpProcessor

SexpProcessor::VERSION

Instance Attribute Summary

Attributes inherited from SexpProcessor

#context, #env, #expected

Instance Method Summary collapse

Methods inherited from BasicProcessor

#process_default

Methods included from Util

#array?, #block?, #call?, #camelize, #class_name, #contains_class?, #context_for, #cookies?, #false?, #file_by_name, #file_for, #github_url, #hash?, #hash_access, #hash_insert, #hash_iterate, #integer?, #make_call, #node_type?, #number?, #params?, #pluralize, #rails_version, #regexp?, #relative_path, #request_env?, #request_value?, #result?, #set_env_defaults, #sexp?, #string?, #string_interp?, #symbol?, #table_to_csv, #template_path_to_name, #true?, #truncate_table, #underscore

Methods included from ProcessorHelper

#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) ⇒ Rails2ConfigProcessor

Returns a new instance of Rails2ConfigProcessor.



25
26
27
# File 'lib/brakeman/processors/lib/rails2_config_processor.rb', line 25

def initialize *args
  super
end

Instance Method Details

#get_rails_config(exp) ⇒ Object

Returns an array of symbols for each ‘level’ in the config

config.action_controller.session_store = :cookie

becomes

[:action_controller, :session_store]


106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/brakeman/processors/lib/rails2_config_processor.rb', line 106

def get_rails_config exp
  if node_type? exp, :attrasgn
    attribute = exp.method.to_s[0..-2].to_sym
    get_rails_config(exp.target) << attribute
  elsif call? exp
    if exp.target == RAILS_CONFIG
      [exp.method]
    else
      get_rails_config(exp.target) << exp.method
    end
  else
    raise "WHAT"
  end
end

#include_rails_config?(exp) ⇒ Boolean

Check if an expression includes a call to set Rails config

Returns:

  • (Boolean)


84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/brakeman/processors/lib/rails2_config_processor.rb', line 84

def include_rails_config? exp
  target = exp.target
  if call? target
    if target.target == RAILS_CONFIG
      true
    else
      include_rails_config? target
    end
  elsif target == RAILS_CONFIG
    true
  else
    false
  end
end

#process_attrasgn(exp) ⇒ Object

Look for configuration settings



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/brakeman/processors/lib/rails2_config_processor.rb', line 49

def process_attrasgn exp
  if exp.target == RAILS_CONFIG
    #Get rid of '=' at end
    attribute = exp.method.to_s[0..-2].to_sym
    if exp.args.length > 1
      #Multiple arguments?...not sure if this will ever happen
      @tracker.config.rails[attribute] = exp.args
    else
      @tracker.config.rails[attribute] = exp.first_arg
    end
  elsif include_rails_config? exp
    options = get_rails_config exp
    level = @tracker.config.rails
    options[0..-2].each do |o|
      level[o] ||= {}
      level = level[o]
    end

    level[options.last] = exp.first_arg
  end

  exp
end

#process_call(exp) ⇒ Object

Check if config is set to use Erubis



36
37
38
39
40
41
42
43
44
45
46
# File 'lib/brakeman/processors/lib/rails2_config_processor.rb', line 36

def process_call exp
  target = exp.target
  target = process target if sexp? target

  if exp.method == :gem and exp.first_arg.value == "erubis"
    Brakeman.notify "[Notice] Using Erubis for ERB templates"
    @tracker.config.erubis = true
  end

  exp
end

#process_cdecl(exp) ⇒ Object

Check for Rails version



74
75
76
77
78
79
80
81
# File 'lib/brakeman/processors/lib/rails2_config_processor.rb', line 74

def process_cdecl exp
  #Set Rails version required
  if exp.lhs == :RAILS_GEM_VERSION
    @tracker.config.rails_version = exp.rhs.value
  end

  exp
end

#process_config(src) ⇒ Object

Use this method to process configuration file



30
31
32
33
# File 'lib/brakeman/processors/lib/rails2_config_processor.rb', line 30

def process_config src
  res = Brakeman::ConfigAliasProcessor.new.process_safely(src)
  process res
end