Module: Brakeman::Options
- Defined in:
- lib/brakeman/options.rb
Overview
Parses command line arguments for Brakeman
Class Method Summary collapse
- .create_option_parser(options) ⇒ Object
-
.get_options(args, destructive = false) ⇒ Object
Return hash of options and the parser.
-
.parse(args) ⇒ Object
Parse argument array.
-
.parse!(args) ⇒ Object
Parse arguments and remove them from the array as they are matched.
Class Method Details
.create_option_parser(options) ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
# File 'lib/brakeman/options.rb', line 38 def create_option_parser OptionParser.new do |opts| opts. = "Usage: brakeman [options] rails/root/path" opts.on "-n", "--no-threads", "Run checks and file parsing sequentially" do [:parallel_checks] = false end opts.on "--[no-]progress", "Show progress reports" do |progress| [:report_progress] = progress end opts.on "-p", "--path PATH", "Specify path to Rails application" do |path| [:app_path] = path end opts.on "-q", "--[no-]quiet", "Suppress informational messages" do |quiet| [:quiet] = quiet end opts.on( "-z", "--[no-]exit-on-warn", "Exit code is non-zero if warnings found (Default)") do |exit_on_warn| [:exit_on_warn] = exit_on_warn end opts.on "--[no-]exit-on-error", "Exit code is non-zero if errors raised (Default)" do |exit_on_error| [:exit_on_error] = exit_on_error end opts.on "--ensure-latest", "Fail when Brakeman is outdated" do [:ensure_latest] = true end opts.on "--ensure-ignore-notes", "Fail when an ignored warnings does not include a note" do [:ensure_ignore_notes] = true end opts.on "-3", "--rails3", "Force Rails 3 mode" do [:rails3] = true end opts.on "-4", "--rails4", "Force Rails 4 mode" do [:rails3] = true [:rails4] = true end opts.on "-5", "--rails5", "Force Rails 5 mode" do [:rails3] = true [:rails4] = true [:rails5] = true end opts.on "-6", "--rails6", "Force Rails 6 mode" do [:rails3] = true [:rails4] = true [:rails5] = true [:rails6] = true end opts.on "-7", "--rails7", "Force Rails 7 mode" do [:rails3] = true [:rails4] = true [:rails5] = true [:rails6] = true [:rails7] = true end opts.on "-8", "--rails8", "Force Rails 8 mode" do [:rails3] = true [:rails4] = true [:rails5] = true [:rails6] = true [:rails7] = true [:rails8] = true end opts.separator "" opts.separator "Scanning options:" opts.on "-A", "--run-all-checks", "Run all default and optional checks" do [:run_all_checks] = true end opts.on "-a", "--[no-]assume-routes", "Assume all controller methods are actions (Default)" do |assume| [:assume_all_routes] = assume end opts.on "-e", "--escape-html", "Escape HTML by default" do [:escape_html] = true end opts.on "--faster", "Faster, but less accurate scan" do [:ignore_ifs] = true [:skip_libs] = true [:disable_constant_tracking] = true end opts.on "--ignore-model-output", "Consider model attributes XSS-safe" do [:ignore_model_output] = true end opts.on "--ignore-protected", "Consider models with attr_protected safe" do [:ignore_attr_protected] = true end opts.on "--[no-]index-libs", "Add libraries to call index (Default)" do |index| [:index_libs] = index end opts.on "--interprocedural", "Process method calls to known methods" do [:interprocedural] = true end opts.on "--no-branching", "Disable flow sensitivity on conditionals" do [:ignore_ifs] = true end opts.on "--branch-limit LIMIT", Integer, "Limit depth of values in branches (-1 for no limit)" do |limit| [:branch_limit] = limit end opts.on "--parser-timeout SECONDS", Integer, "Set parse timeout (Default: 10)" do |timeout| [:parser_timeout] = timeout end opts.on "--[no-]prism", "Use the Prism parser" do |use_prism| if use_prism prism_version = '0.30' begin # Specifying minimum version here, # since it can't be in the gem dependency list because it is optional gem 'prism', "~>#{prism_version}" rescue Gem::MissingSpecVersionError, Gem::MissingSpecError, Gem::LoadError => e $stderr.puts "Please install `prism` version #{prism_version} or newer:" raise e end end [:use_prism] = use_prism end opts.on "-r", "--report-direct", "Only report direct use of untrusted data" do |option| [:check_arguments] = !option end opts.on "-s", "--safe-methods meth1,meth2,etc", Array, "Set methods as safe for unescaped output in views" do |methods| [:safe_methods] ||= Set.new [:safe_methods].merge methods.map {|e| e.to_sym } end opts.on "--sql-safe-methods meth1,meth2,etc", Array, "Do not warn of SQL if the input is wrapped in a safe method" do |methods| [:sql_safe_methods] ||= Set.new [:sql_safe_methods].merge methods.map {|e| e.to_sym } end opts.on "--url-safe-methods method1,method2,etc", Array, "Do not warn of XSS if the link_to href parameter is wrapped in a safe method" do |methods| [:url_safe_methods] ||= Set.new [:url_safe_methods].merge methods.map {|e| e.to_sym } end opts.on "--skip-files file1,path2,etc", Array, "Skip processing of these files/directories. Directories are application relative and must end in \"#{File::SEPARATOR}\"" do |files| [:skip_files] ||= Set.new [:skip_files].merge files end opts.on "--only-files file1,path2,etc", Array, "Process only these files/directories. Directories are application relative and must end in \"#{File::SEPARATOR}\"" do |files| [:only_files] ||= Set.new [:only_files].merge files end opts.on "--[no-]skip-vendor", "Skip processing vendor directory (Default)" do |skip| [:skip_vendor] = skip end opts.on "--skip-libs", "Skip processing lib directory" do [:skip_libs] = true end opts.on "--add-libs-path path1,path2,etc", Array, "An application relative lib directory (ex. app/mailers) to process" do |paths| [:additional_libs_path] ||= Set.new [:additional_libs_path].merge paths end opts.on "--add-engines-path path1,path2,etc", Array, "Include these engines in the scan" do |paths| [:engine_paths] ||= Set.new [:engine_paths].merge paths end opts.on "-E", "--enable Check1,Check2,etc", Array, "Enable the specified checks" do |checks| checks.map! do |check| if check.start_with? "Check" check else "Check#{check}" end end [:enable_checks] ||= Set.new [:enable_checks].merge checks end opts.on "-t", "--test Check1,Check2,etc", Array, "Only run the specified checks" do |checks| checks.each_with_index do |s, index| if s[0,5] != "Check" checks[index] = "Check#{s}" end end [:run_checks] ||= Set.new [:run_checks].merge checks end opts.on "-x", "--except Check1,Check2,etc", Array, "Skip the specified checks" do |skip| skip.each do |s| if s[0,5] != "Check" s = "Check#{s}" end [:skip_checks] ||= Set.new [:skip_checks] << s end end opts.on "--add-checks-path path1,path2,etc", Array, "A directory containing additional out-of-tree checks to run" do |paths| [:additional_checks_path] ||= Set.new [:additional_checks_path].merge paths.map {|p| File. p} end opts.separator "" opts.separator "Output options:" opts.on "-d", "--debug", "Lots of output" do [:debug] = true end opts.on "--timing", "Measure time for scan steps" do [:show_timing] = true end opts.on "-f", "--format TYPE", [:pdf, :text, :html, :csv, :tabs, :json, :markdown, :codeclimate, :cc, :plain, :table, :junit, :sarif, :sonar, :github], "Specify output formats. Default is text" do |type| type = "s" if type == :text [:output_format] = :"to_#{type}" end opts.on "--css-file CSSFile", "Specify CSS to use for HTML output" do |file| [:html_style] = File. file end opts.on "-i IGNOREFILE", "--ignore-config IGNOREFILE", "Use configuration to ignore warnings" do |file| [:ignore_file] = file end opts.on "-I", "--interactive-ignore", "Interactively ignore warnings" do [:interactive_ignore] = true end opts.on "--show-ignored", "Show files that are usually ignored by the ignore configuration file" do [:show_ignored] = true end opts.on "-l", "--[no-]combine-locations", "Combine warning locations (Default)" do |combine| [:combine_locations] = combine end opts.on "--[no-]highlights", "Highlight user input in report" do |highlight| [:highlight_user_input] = highlight end opts.on "--[no-]color", "Use ANSI colors in report (Default)" do |color| if color [:output_color] = :force else [:output_color] = color end end opts.on "-m", "--routes", "Report controller information" do [:report_routes] = true end opts.on "--message-limit LENGTH", "Limit message length in HTML report" do |limit| [:message_limit] = limit.to_i end opts.on "--[no-]pager", "Use pager for output to terminal (Default)" do |pager| [:pager] = pager end opts.on "--table-width WIDTH", "Limit table width in text report" do |width| [:table_width] = width.to_i end opts.on "-o", "--output FILE", "Specify files for output. Defaults to stdout. Multiple '-o's allowed" do |file| [:output_files] ||= [] [:output_files].push(file) end opts.on "--[no-]separate-models", "Warn on each model without attr_accessible (Default)" do |separate| [:collapse_mass_assignment] = !separate end opts.on "--[no-]summary", "Only output summary of warnings" do |summary_only| if summary_only [:summary_only] = :summary_only else [:summary_only] = :no_summary end end opts.on "--absolute-paths", "Output absolute file paths in reports" do [:absolute_paths] = true end opts.on "--github-repo USER/REPO[/PATH][@REF]", "Output links to GitHub in markdown and HTML reports using specified repo" do |repo| [:github_repo] = repo end opts.on "--text-fields field1,field2,etc.", Array, "Specify fields for text report format" do |format| = [:category, :category_id, :check, :code, :confidence, :cwe, :file, :fingerprint, :line, :link, :message, :render_path] [:text_fields] = format.map(&:to_sym) if [:text_fields] == [:all] [:text_fields] = else = ([:text_fields] - ) unless .empty? raise OptionParser::ParseError, "\nInvalid format options: #{.inspect}" end end end opts.on "-w", "--confidence-level LEVEL", ["1", "2", "3"], "Set minimal confidence level (1 - 3)" do |level| [:min_confidence] = 3 - level.to_i end opts.on "--compare FILE", "Compare the results of a previous Brakeman scan (only JSON is supported)" do |file| [:previous_results_json] = File.(file) end opts.separator "" opts.separator "Configuration files:" opts.on "-c", "--config-file FILE", "Use specified configuration file" do |file| [:config_file] = File.(file) end opts.on "-C", "--create-config [FILE]", "Output configuration file based on options" do |file| if file [:create_config] = file else [:create_config] = true end end opts.on "--allow-check-paths-in-config", "Allow loading checks from configuration file (Unsafe)" do [:allow_check_paths_in_config] = true end opts.separator "" opts.on "-k", "--checks", "List all available vulnerability checks" do [:list_checks] = true end opts.on "--optional-checks", "List optional checks" do [:list_optional_checks] = true end opts.on "-v", "--version", "Show Brakeman version" do [:show_version] = true end opts.on "--force-scan", "Scan application even if rails is not detected" do [:force_scan] = true end opts.on_tail "-h", "--help", "Display this message" do [:show_help] = true end end end |
.get_options(args, destructive = false) ⇒ Object
Return hash of options and the parser
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/brakeman/options.rb', line 20 def args, destructive = false = {} parser = create_option_parser if destructive parser.parse! args else parser.parse args end if [:previous_results_json] and [:output_files] [:comparison_output_file] = [:output_files].shift end return , parser end |
.parse(args) ⇒ Object
Parse argument array
10 11 12 |
# File 'lib/brakeman/options.rb', line 10 def parse args args end |
.parse!(args) ⇒ Object
Parse arguments and remove them from the array as they are matched
15 16 17 |
# File 'lib/brakeman/options.rb', line 15 def parse! args args, true end |