brakeman.rb 10.8 KB
Newer Older
J
Justin Collins 已提交
1
require 'rubygems'
2 3
require 'yaml'
require 'set'
4 5

module Brakeman
J
Justin Collins 已提交
6

7 8 9 10
  #This exit code is used when warnings are found and the --exit-on-warn
  #option is set
  Warnings_Found_Exit_Code = 3

11 12 13
  @debug = false
  @quiet = false

J
Justin Collins 已提交
14 15 16 17 18
  #Run Brakeman scan. Returns Tracker object.
  #
  #Options:
  #
  #  * :app_path - path to root of Rails app (required)
J
Justin Collins 已提交
19
  #  * :assume_all_routes - assume all methods are routes (default: true)
J
Justin Collins 已提交
20 21 22 23 24
  #  * :check_arguments - check arguments of methods (default: true)
  #  * :collapse_mass_assignment - report unprotected models in single warning (default: true)
  #  * :combine_locations - combine warning locations (default: true)
  #  * :config_file - configuration file
  #  * :escape_html - escape HTML by default (automatic)
25
  #  * :exit_on_warn - return false if warnings found, true otherwise. Not recommended for library use (default: false)
26
  #  * :highlight_user_input - highlight user input in reported warnings (default: true)
J
Justin Collins 已提交
27 28
  #  * :html_style - path to CSS file
  #  * :ignore_model_output - consider models safe (default: false)
29
  #  * :interprocedural - limited interprocedural processing of method calls (default: false)
J
Justin Collins 已提交
30 31
  #  * :message_limit - limit length of messages
  #  * :min_confidence - minimum confidence (0-2, 0 is highest)
32 33
  #  * :output_files - files for output
  #  * :output_formats - formats for output (:to_s, :to_tabs, :to_csv, :to_html)
J
Justin Collins 已提交
34
  #  * :parallel_checks - run checks in parallel (default: true)
35 36
  #  * :print_report - if no output file specified, print to stdout (default: false)
  #  * :quiet - suppress most messages (default: true)
J
Justin Collins 已提交
37 38 39 40 41 42
  #  * :rails3 - force Rails 3 mode (automatic)
  #  * :report_routes - show found routes on controllers (default: false)
  #  * :run_checks - array of checks to run (run all if not specified)
  #  * :safe_methods - array of methods to consider safe
  #  * :skip_libs - do not process lib/ directory (default: false)
  #  * :skip_checks - checks not to run (run all if not specified)
43
  #  * :absolute_paths - show absolute path of each file (default: false)
44
  #  * :summary_only - only output summary section of report
J
Justin Collins 已提交
45
  #                    (does not apply to tabs format)
J
Justin Collins 已提交
46
  #
47
  #Alternatively, just supply a path as a string.
48
  def self.run options
49 50
    options = set_options options

51 52 53
    @quiet = !!options[:quiet]
    @debug = !!options[:debug]

J
Justin Collins 已提交
54 55 56
    if @quiet
      options[:report_progress] = false
    end
57
    scan options
58 59
  end

60
  #Sets up options for run, checks given application path
61
  def self.set_options options
62 63 64
    if options.is_a? String
      options = { :app_path => options }
    end
65 66 67 68 69 70

    if options[:quiet] == :command_line
      command_line = true
      options.delete :quiet
    end

71
    options = default_options.merge(load_options(options[:config_file], options[:quiet])).merge(options)
72

73 74 75 76
    if options[:quiet].nil? and not command_line
      options[:quiet] = true
    end

77
    options[:app_path] = File.expand_path(options[:app_path])
78
    options[:output_formats] = get_output_formats options
79 80 81 82

    options
  end

G
grosser 已提交
83 84 85
  CONFIG_FILES = [
    File.expand_path("./config/brakeman.yml"),
    File.expand_path("~/.brakeman/config.yml"),
86
    File.expand_path("/etc/brakeman/config.yml")
G
grosser 已提交
87
  ]
88

G
grosser 已提交
89
  #Load options from YAML file
90
  def self.load_options custom_location, quiet
91
    #Load configuration file
G
grosser 已提交
92 93
    if config = config_file(custom_location)
      options = YAML.load_file config
94 95 96 97 98 99 100 101 102 103 104

      if options
        options.each { |k, v| options[k] = Set.new v if v.is_a? Array }

        # notify if options[:quiet] and quiet is nil||false
        notify "[Notice] Using configuration in #{config}" unless (options[:quiet] || quiet)
        options
      else
        notify "[Notice] Empty configuration file: #{config}" unless quiet
        {}
      end
G
grosser 已提交
105 106 107 108 109
    else
      {}
    end
  end

110 111 112
  def self.config_file custom_location = nil
    supported_locations = [File.expand_path(custom_location || "")] + CONFIG_FILES
    supported_locations.detect {|f| File.file?(f) }
113 114
  end

115
  #Default set of options
116
  def self.default_options
117 118
    { :assume_all_routes => true,
      :skip_checks => Set.new,
119
      :check_arguments => true,
120 121 122 123
      :safe_methods => Set.new,
      :min_confidence => 2,
      :combine_locations => true,
      :collapse_mass_assignment => true,
124
      :highlight_user_input => true,
125 126 127
      :ignore_redirect_to_model => true,
      :ignore_model_output => false,
      :message_limit => 100,
128
      :parallel_checks => true,
F
fsword 已提交
129
      :relative_path => false,
J
Justin Collins 已提交
130
      :report_progress => true,
131
      :html_style => "#{File.expand_path(File.dirname(__FILE__))}/brakeman/format/style.css"
132 133 134
    }
  end

135 136 137
  #Determine output formats based on options[:output_formats]
  #or options[:output_files]
  def self.get_output_formats options
138
    #Set output format
139 140 141
    if options[:output_format] && options[:output_files] && options[:output_files].size > 1
      raise ArgumentError, "Cannot specify output format if multiple output files specified"
    end
142
    if options[:output_format]
143 144 145
      get_formats_from_output_format options[:output_format]
    elsif options[:output_files]
      get_formats_from_output_files options[:output_files]
146
    else
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
      return [:to_s]
    end
  end
  
  def self.get_formats_from_output_format output_format
    case output_format
    when :html, :to_html
      [:to_html]
    when :csv, :to_csv
      [:to_csv]
    when :pdf, :to_pdf
      [:to_pdf]
    when :tabs, :to_tabs
      [:to_tabs]
    when :json, :to_json
      [:to_json]
    else
      [:to_s]
    end
  end
  private_class_method :get_formats_from_output_format
  
  def self.get_formats_from_output_files output_files
    output_files.map do |output_file|
      case output_file
      when /\.html$/i
        :to_html
      when /\.csv$/i
        :to_csv
      when /\.pdf$/i
        :to_pdf
      when /\.tabs$/i
        :to_tabs
      when /\.json$/i
        :to_json
      else
        :to_s
184 185 186
      end
    end
  end
187
  private_class_method :get_formats_from_output_files
188

189
  #Output list of checks (for `-k` option)
190
  def self.list_checks
J
Justin Collins 已提交
191
    require 'brakeman/scanner'
S
soffolk 已提交
192 193
    format_length = 30
    
194
    $stderr.puts "Available Checks:"
S
soffolk 已提交
195 196
    $stderr.puts "-" * format_length
    Checks.checks.each do |check|
197
      $stderr.printf("%-#{format_length}s%s\n", check.name, check.description)
S
soffolk 已提交
198
    end
199 200
  end

201 202 203
  #Installs Rake task for running Brakeman,
  #which basically means copying `lib/brakeman/brakeman.rake` to
  #`lib/tasks/brakeman.rake` in the current Rails application.
204 205 206 207 208 209 210 211 212 213 214 215 216
  def self.install_rake_task install_path = nil
    if install_path
      rake_path = File.join(install_path, "Rakefile")
      task_path = File.join(install_path, "lib", "tasks", "brakeman.rake")
    else
      rake_path = "Rakefile"
      task_path = File.join("lib", "tasks", "brakeman.rake")
    end

    if not File.exists? rake_path
      raise RakeInstallError, "No Rakefile detected"
    elsif File.exists? task_path
      raise RakeInstallError, "Task already exists"
217 218 219 220 221
    end

    require 'fileutils'

    if not File.exists? "lib/tasks"
222
      notify "Creating lib/tasks"
223 224 225 226 227
      FileUtils.mkdir_p "lib/tasks"
    end

    path = File.expand_path(File.dirname(__FILE__))

228
    FileUtils.cp "#{path}/brakeman/brakeman.rake", task_path
229

230 231
    if File.exists? task_path
      notify "Task created in #{task_path}"
232
      notify "Usage: rake brakeman:run[output_file]"
233
    else
234
      raise RakeInstallError, "Could not create task"
235 236 237
    end
  end

238
  #Output configuration to YAML
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
  def self.dump_config options
    if options[:create_config].is_a? String
      file = options[:create_config]
    else
      file = nil
    end

    options.delete :create_config

    options.each do |k,v|
      if v.is_a? Set
        options[k] = v.to_a
      end
    end

    if file
      File.open file, "w" do |f|
        YAML.dump options, f
      end
      puts "Output configuration to #{file}"
    else
      puts YAML.dump(options)
    end
    exit
  end

265
  #Run a scan. Generally called from Brakeman.run instead of directly.
266 267
  def self.scan options
    #Load scanner
268
    notify "Loading scanner..."
269 270

    begin
J
Justin Collins 已提交
271
      require 'brakeman/scanner'
272
    rescue LoadError
273
      raise NoBrakemanError, "Cannot find lib/ directory."
274 275 276
    end

    #Start scanning
277
    scanner = Scanner.new options
278

279
    notify "Processing application in #{options[:app_path]}"
280 281
    tracker = scanner.process

282
    if options[:parallel_checks]
283
      notify "Running checks in parallel..."
284
    else
285
      notify "Runnning checks..."
286
    end
287 288
    tracker.run_checks

289
    if options[:output_files]
290
      notify "Generating report..."
291

292
      write_report_to_files tracker, options[:output_files]
293
    elsif options[:print_report]
294
      notify "Generating report..."
295

296
      write_report_to_formats tracker, options[:output_formats]
297
    end
298

299
    tracker
300
  end
301 302 303 304
  
  def self.write_report_to_files tracker, output_files
    output_files.each_with_index do |output_file, idx|
      File.open output_file, "w" do |f|
305
        f.write tracker.report.format(tracker.options[:output_formats][idx])
306 307 308 309 310 311 312 313
      end
      notify "Report saved in '#{output_file}'"
    end
  end
  private_class_method :write_report_to_files
  
  def self.write_report_to_formats tracker, output_formats
    output_formats.each do |output_format|
314
      puts tracker.report.format(output_format)
315 316 317
    end
  end
  private_class_method :write_report_to_formats
J
Justin Collins 已提交
318

319 320 321 322 323 324
  #Rescan a subset of files in a Rails application.
  #
  #A full scan must have been run already to use this method.
  #The returned Tracker object from Brakeman.run is used as a starting point
  #for the rescan.
  #
325 326 327
  #Options may be given as a hash with the same values as Brakeman.run.
  #Note that these options will be merged into the Tracker.
  #
328 329
  #This method returns a RescanReport object with information about the scan.
  #However, the Tracker object will also be modified as the scan is run.
330
  def self.rescan tracker, files, options = {}
331 332
    require 'brakeman/rescanner'

333 334 335 336 337
    tracker.options.merge! options

    @quiet = !!tracker.options[:quiet]
    @debug = !!tracker.options[:debug]

338
    Rescanner.new(tracker.options, tracker.processor, files).recheck
J
Justin Collins 已提交
339
  end
340 341 342 343 344 345 346 347

  def self.notify message
    $stderr.puts message unless @quiet
  end

  def self.debug message
    $stderr.puts message if @debug
  end
O
oreoshake 已提交
348 349 350

  # Compare JSON ouptut from a previous scan and return the diff of the two scans
  def self.compare options
351
    require 'multi_json'
O
oreoshake 已提交
352
    require 'brakeman/differ'
O
oreoshake 已提交
353 354
    raise ArgumentError.new("Comparison file doesn't exist") unless File.exists? options[:previous_results_json]

355
    begin
356 357
      previous_results = MultiJson.load(File.read(options[:previous_results_json]), :symbolize_keys => true)[:warnings]
    rescue MultiJson::DecodeError
358 359 360
      self.notify "Error parsing comparison file: #{options[:previous_results_json]}"
      exit!
    end
O
oreoshake 已提交
361 362

    tracker = run(options)
363

364
    new_results = MultiJson.load(tracker.report.to_json, :symbolize_keys => true)[:warnings]
365

O
oreoshake 已提交
366
    Brakeman::Differ.new(new_results, previous_results).diff
O
oreoshake 已提交
367
  end
368

369
  class RakeInstallError < RuntimeError; end
370
  class NoBrakemanError < RuntimeError; end
371
end