brakeman.rb 8.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 19 20 21 22 23 24
  #Run Brakeman scan. Returns Tracker object.
  #
  #Options:
  #
  #  * :app_path - path to root of Rails app (required)
  #  * :assume_all_routes - assume all methods are routes (default: false)
  #  * :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)
J
Justin Collins 已提交
26 27 28 29
  #  * :html_style - path to CSS file
  #  * :ignore_model_output - consider models safe (default: false)
  #  * :message_limit - limit length of messages
  #  * :min_confidence - minimum confidence (0-2, 0 is highest)
30 31
  #  * :output_files - files for output
  #  * :output_formats - formats for output (:to_s, :to_tabs, :to_csv, :to_html)
J
Justin Collins 已提交
32
  #  * :parallel_checks - run checks in parallel (default: true)
33 34
  #  * :print_report - if no output file specified, print to stdout (default: false)
  #  * :quiet - suppress most messages (default: true)
J
Justin Collins 已提交
35 36 37 38 39 40
  #  * :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)
J
Justin Collins 已提交
41 42
  #  * :summary_only - only output summary section of report 
  #                    (does not apply to tabs format)
J
Justin Collins 已提交
43
  #
44
  #Alternatively, just supply a path as a string.
45
  def self.run options
46 47
    options = set_options options

48 49 50
    @quiet = !!options[:quiet]
    @debug = !!options[:debug]

J
Justin Collins 已提交
51 52 53
    if @quiet
      options[:report_progress] = false
    end
54

55
    scan options
56 57
  end

58
  #Sets up options for run, checks given application path
59
  def self.set_options options
60 61 62 63
    if options.is_a? String
      options = { :app_path => options }
    end

64 65
    options[:app_path] = File.expand_path(options[:app_path])

66 67
    options = load_options(options[:config_file]).merge! options
    options = get_defaults.merge! options
68
    options[:output_formats] = get_output_formats options
69 70 71 72 73 74 75

    app_path = options[:app_path]

    abort("Please supply the path to a Rails application.") unless app_path and File.exist? app_path + "/app"

    if File.exist? app_path + "/script/rails"
      options[:rails3] = true
76
      notify "[Notice] Detected Rails 3 application"
77 78 79 80 81
    end

    options
  end

82
  #Load options from YAML file
83 84 85
  def self.load_options config_file
    config_file ||= ""

86
    #Load configuration file
87 88 89 90 91 92 93
    [File.expand_path(config_file),
      File.expand_path("./config.yaml"),
      File.expand_path("~/.brakeman/config.yaml"),
      File.expand_path("/etc/brakeman/config.yaml"),
      "#{File.expand_path(File.dirname(__FILE__))}/../lib/config.yaml"].each do |f|

      if File.exist? f and not File.directory? f
94
        notify "[Notice] Using configuration in #{f}"
95 96 97 98 99 100 101 102 103 104 105 106 107 108
        options = YAML.load_file f
        options.each do |k,v|
          if v.is_a? Array
            options[k] = Set.new v
          end
        end

        return options
      end
      end

    return {}
  end

109
  #Default set of options
110 111 112 113 114 115 116 117 118 119
  def self.get_defaults
    { :skip_checks => Set.new, 
      :check_arguments => true, 
      :safe_methods => Set.new,
      :min_confidence => 2,
      :combine_locations => true,
      :collapse_mass_assignment => true,
      :ignore_redirect_to_model => true,
      :ignore_model_output => false,
      :message_limit => 100,
120
      :parallel_checks => true,
121
      :quiet => true,
J
Justin Collins 已提交
122
      :report_progress => true,
J
Justin Collins 已提交
123
      :html_style => "#{File.expand_path(File.dirname(__FILE__))}/brakeman/format/style.css" 
124 125 126
    }
  end

127 128 129
  #Determine output formats based on options[:output_formats]
  #or options[:output_files]
  def self.get_output_formats options
130
    #Set output format
131 132 133
    if options[:output_format] && options[:output_files] && options[:output_files].size > 1
      raise ArgumentError, "Cannot specify output format if multiple output files specified"
    end
134
    if options[:output_format]
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
      [
        case options[: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
      ]
151
    else
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
      return [:to_s] unless options[:output_files]
      options[: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
        end
168 169 170 171
      end
    end
  end

172
  #Output list of checks (for `-k` option)
173
  def self.list_checks
J
Justin Collins 已提交
174
    require 'brakeman/scanner'
175 176
    $stderr.puts "Available Checks:"
    $stderr.puts "-" * 30
177 178 179
    $stderr.puts Checks.checks.map { |c|
      c.to_s.match(/^Brakeman::(.*)$/)[1].ljust(27) << c.description
    }.sort.join "\n"
180 181
  end

182 183 184
  #Installs Rake task for running Brakeman,
  #which basically means copying `lib/brakeman/brakeman.rake` to
  #`lib/tasks/brakeman.rake` in the current Rails application.
185 186 187 188 189 190 191 192 193 194
  def self.install_rake_task
    if not File.exists? "Rakefile"
      abort "No Rakefile detected"
    elsif File.exists? "lib/tasks/brakeman.rake"
      abort "Task already exists"
    end

    require 'fileutils'

    if not File.exists? "lib/tasks"
195
      notify "Creating lib/tasks"
196 197 198 199 200 201 202 203
      FileUtils.mkdir_p "lib/tasks"
    end

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

    FileUtils.cp "#{path}/brakeman/brakeman.rake", "lib/tasks/brakeman.rake"

    if File.exists? "lib/tasks/brakeman.rake"
204 205
      notify "Task created in lib/tasks/brakeman.rake"
      notify "Usage: rake brakeman:run[output_file]"
206
    else
207
      notify "Could not create task"
208 209 210
    end
  end

211
  #Output configuration to YAML
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
  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

238
  #Run a scan. Generally called from Brakeman.run instead of directly.
239 240
  def self.scan options
    #Load scanner
241
    notify "Loading scanner..."
242 243

    begin
J
Justin Collins 已提交
244
      require 'brakeman/scanner'
245 246 247 248 249
    rescue LoadError
      abort "Cannot find lib/ directory."
    end

    #Start scanning
250
    scanner = Scanner.new options
251

252
    notify "[Notice] Using Ruby #{RUBY_VERSION}. Please make sure this matches the one used to run your Rails application."
253

254
    notify "Processing application in #{options[:app_path]}"
255 256
    tracker = scanner.process

257
    if options[:parallel_checks]
258
      notify "Running checks in parallel..."
259
    else
260
      notify "Runnning checks..."
261
    end
262 263
    tracker.run_checks

264
    if options[:output_files]
265
      notify "Generating report..."
266

267 268 269 270 271
      options[:output_files].each_with_index do |output_file, idx|
        File.open output_file, "w" do |f|
          f.write tracker.report.send(options[:output_formats][idx])
        end
        notify "Report saved in '#{output_file}'"
272
      end
273
    elsif options[:print_report]
274
      notify "Generating report..."
275

276 277 278
      options[:output_formats].each do |output_format|
        puts tracker.report.send(output_format)
      end
279
    end
280

281
    tracker
282
  end
J
Justin Collins 已提交
283

284 285 286 287 288 289
  #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.
  #
290 291 292
  #Options may be given as a hash with the same values as Brakeman.run.
  #Note that these options will be merged into the Tracker.
  #
293 294
  #This method returns a RescanReport object with information about the scan.
  #However, the Tracker object will also be modified as the scan is run.
295
  def self.rescan tracker, files, options = {}
296 297
    require 'brakeman/rescanner'

298 299 300 301 302
    tracker.options.merge! options

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

303
    Rescanner.new(tracker.options, tracker.processor, files).recheck
J
Justin Collins 已提交
304
  end
305 306 307 308 309 310 311 312

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

  def self.debug message
    $stderr.puts message if @debug
  end
313
end