Class: Brakeman::FindAllCalls

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

Constant Summary

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::SESSION, Util::SESSION_SEXP

Constants inherited from SexpProcessor

SexpProcessor::VERSION

Instance Attribute Summary collapse

Attributes inherited from SexpProcessor

#context, #env, #expected

Instance Method Summary collapse

Methods inherited from BasicProcessor

#process_default, #process_if

Methods included from Util

#array?, #block?, #call?, #camelize, #class_name, #constant?, #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

#current_file_name, #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(tracker) ⇒ FindAllCalls

Returns a new instance of FindAllCalls.



6
7
8
9
10
11
12
13
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 6

def initialize tracker
  super
  @current_class = nil
  @current_method = nil
  @in_target = false
  @calls = []
  @cache = {}
end

Instance Attribute Details

#callsObject (readonly)

Returns the value of attribute calls.



4
5
6
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 4

def calls
  @calls
end

Instance Method Details

#process_attrasgn(exp) ⇒ Object

Process an assignment like a call



103
104
105
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 103

def process_attrasgn exp
  process_call exp
end

#process_call(exp) ⇒ Object



38
39
40
41
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 38

def process_call exp
  @calls << create_call_hash(exp)
  exp
end

#process_defn(exp) ⇒ Object Also known as: process_defs

Process body of method



26
27
28
29
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 26

def process_defn exp
  return exp unless @current_method
  process_all exp.body
end

#process_dregx(exp) ⇒ Object

Process a dynamic regex like a call



94
95
96
97
98
99
100
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 94

def process_dregx exp
  exp.each { |arg| process arg if sexp? arg }

  add_simple_call :brakeman_regex_interp, exp

  exp
end

#process_dsym(exp) ⇒ Object

:“string” is equivalent to “string”.to_sym



85
86
87
88
89
90
91
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 85

def process_dsym exp
  exp.each { |arg| process arg if sexp? arg }

  add_simple_call :literal_to_sym, exp

  exp
end

#process_dxstr(exp) ⇒ Object

Technically, “ is call to Kernel#‘ But we just need them in the call cache for speed



76
77
78
79
80
81
82
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 76

def process_dxstr exp
  process exp.last if sexp? exp.last

  add_simple_call :`, exp

  exp
end

#process_iter(exp) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 43

def process_iter exp
  call = exp.block_call

  if call.node_type == :call
    call_hash = create_call_hash(call)

    call_hash[:block] = exp.block
    call_hash[:block_args] = exp.block_args

    @calls << call_hash

    process exp.block
  else
    #Probably a :render call with block
    process call
    process exp.block
  end

  exp
end

#process_render(exp) ⇒ Object

Calls to render() are converted to s(:render, …) but we would like them in the call cache still for speed



66
67
68
69
70
71
72
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 66

def process_render exp
  process exp.last if sexp? exp.last

  add_simple_call :render, exp

  exp
end

#process_rlist(exp) ⇒ Object

Process body of block



34
35
36
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 34

def process_rlist exp
  process_all exp
end

#process_source(exp, opts) ⇒ Object

Process the given source. Provide either class and method being searched or the template. These names are used when reporting results.



17
18
19
20
21
22
23
# File 'lib/brakeman/processors/lib/find_all_calls.rb', line 17

def process_source exp, opts
  @current_class = opts[:class]
  @current_method = opts[:method]
  @current_template = opts[:template]
  @current_file = opts[:file]
  process exp
end