brakeman-min 7.0.0 → 7.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b159c25a22da361d14ae94e15d853ab400ebe40ff34e0f1c470c5610cf61d5e
4
- data.tar.gz: 6a98f78676960d8e6a3dcf5050ede72aa2cef27f1231fc398b7588d349e2cfb7
3
+ metadata.gz: baa16f18d1ceaf0c04654b5b84547e3bb0cd23368409b980742df987f88df059
4
+ data.tar.gz: 90b31d54feaad0b87250d7e7599c8bcbe4d290a4bca3132e4e60ea2b83af6e25
5
5
  SHA512:
6
- metadata.gz: 1401beac1441fa1c04f7bea0d439b366098ce8dcffedb8b633904752b4db081bd5d3fab8d29ba2fa6935c1ca7c3f3a7540ff154a9e79f1f66630cf964981953d
7
- data.tar.gz: 31e5590f94a8ce1744709c6442990c0e00b831ddf91e985d30d116cdb2d180a2c96acfb30bfd66a6aeb72feb0b1cb895793e76f558fafb2f340303208e8b6306
6
+ metadata.gz: ac5c7a446bd842ccf61292ac59505b95f9fc5840ef5749f08f39ce9c4a905d8bf24045377b1ccb035d0f3b5810984c9564d962d1ba27da89f0129044e522f81d
7
+ data.tar.gz: 54e8dd54503821cb93b9c11aa6e69aaec2da4ba81308d507df9721fe50e2f21cb2124a8d2f46b9e907696f642c137dc05d8d51bcc4d8fb8e794b51b30b186b6d
data/CHANGES.md CHANGED
@@ -1,3 +1,12 @@
1
+ # 7.0.1 - 2025-04-03
2
+
3
+ * Avoid warning on evaluation of plain strings
4
+ * Enable use of custom/alternative Gemfiles
5
+ * Fix error on directory with `rb` extension (viralpraxis)
6
+ * Support `terminal-table` 4.0 (Chedli Bourguiba)
7
+ * Better support Prism 1.4.0
8
+ * Only output timing for each file when using `--debug`
9
+
1
10
  # 7.0.0 - 2024-12-30
2
11
 
3
12
  * Always warn about deserializing from Marshal
data/README.md CHANGED
@@ -63,7 +63,7 @@ Outside of Rails root (note that the output file is relative to path/to/rails/ap
63
63
 
64
64
  # Compatibility
65
65
 
66
- Brakeman should work with any version of Rails from 2.3.x to 7.x.
66
+ Brakeman should work with any version of Rails from 2.3.x to 8.x.
67
67
 
68
68
  Brakeman can analyze code written with Ruby 2.0 syntax and newer, but requires at least Ruby 3.0.0 to run.
69
69
 
@@ -190,7 +190,12 @@ module Brakeman
190
190
  paths = select_only_files(paths)
191
191
  paths = reject_skipped_files(paths)
192
192
  paths = convert_to_file_paths(paths)
193
- reject_global_excludes(paths)
193
+ paths = reject_global_excludes(paths)
194
+ reject_directories(paths)
195
+ end
196
+
197
+ def reject_directories(paths)
198
+ paths.reject { |path| File.directory?(path) }
194
199
  end
195
200
 
196
201
  def select_only_files(paths)
@@ -22,27 +22,29 @@ class Brakeman::CheckEvaluation < Brakeman::BaseCheck
22
22
  def process_result result
23
23
  return unless original? result
24
24
 
25
- if input = include_user_input?(result[:call].arglist)
26
- confidence = :high
27
- message = msg(msg_input(input), " evaluated as code")
28
- elsif string_evaluation? result[:call].first_arg
29
- confidence = :low
30
- message = "Dynamic string evaluated as code"
31
- elsif safe_literal? result[:call].first_arg
32
- # don't warn
33
- elsif result[:call].method == :eval
34
- confidence = :low
35
- message = "Dynamic code evaluation"
36
- end
25
+ first_arg = result[:call].first_arg
26
+
27
+ unless safe_value? first_arg
28
+ if input = include_user_input?(first_arg)
29
+ confidence = :high
30
+ message = msg(msg_input(input), " evaluated as code")
31
+ elsif string_evaluation? first_arg
32
+ confidence = :low
33
+ message = "Dynamic string evaluated as code"
34
+ elsif result[:call].method == :eval
35
+ confidence = :low
36
+ message = "Dynamic code evaluation"
37
+ end
37
38
 
38
- if confidence
39
- warn :result => result,
40
- :warning_type => "Dangerous Eval",
41
- :warning_code => :code_eval,
42
- :message => message,
43
- :user_input => input,
44
- :confidence => confidence,
45
- :cwe_id => [913, 95]
39
+ if confidence
40
+ warn :result => result,
41
+ :warning_type => "Dangerous Eval",
42
+ :warning_code => :code_eval,
43
+ :message => message,
44
+ :user_input => input,
45
+ :confidence => confidence,
46
+ :cwe_id => [913, 95]
47
+ end
46
48
  end
47
49
  end
48
50
 
@@ -50,4 +52,21 @@ class Brakeman::CheckEvaluation < Brakeman::BaseCheck
50
52
  string_interp? exp or
51
53
  (call? exp and string? exp.target)
52
54
  end
55
+
56
+ def safe_value? exp
57
+ return true unless sexp? exp
58
+
59
+ case exp.sexp_type
60
+ when :dstr
61
+ exp.all? { |e| safe_value? e}
62
+ when :evstr
63
+ safe_value? exp.value
64
+ when :str, :lit
65
+ true
66
+ when :call
67
+ always_safe_method? exp.method
68
+ else
69
+ false
70
+ end
71
+ end
53
72
  end
@@ -87,7 +87,7 @@ class Brakeman::CheckWeakRSAKey < Brakeman::BaseCheck
87
87
 
88
88
  if string? padding_arg
89
89
  padding_arg = padding_arg.deep_clone(padding_arg.line)
90
- padding_arg.value.downcase!
90
+ padding_arg.value = padding_arg.value.downcase
91
91
  end
92
92
 
93
93
  case padding_arg
@@ -226,6 +226,10 @@ module Brakeman::Options
226
226
  options[:follow_symlinks] = follow_symlinks
227
227
  end
228
228
 
229
+ opts.on '--gemfile GEMFILE', 'Specify Gemfile to scan' do |gemfile|
230
+ options[:gemfile] = gemfile
231
+ end
232
+
229
233
  opts.on "-E", "--enable Check1,Check2,etc", Array, "Enable the specified checks" do |checks|
230
234
  checks.map! do |check|
231
235
  if check.start_with? "Check"
@@ -270,7 +270,7 @@ class Brakeman::AliasProcessor < Brakeman::SexpProcessor
270
270
  end
271
271
  when :<<
272
272
  if string? target and string? first_arg
273
- target.value << first_arg.value
273
+ target.value += first_arg.value
274
274
  env[target_var] = target
275
275
  return target
276
276
  elsif string? target and string_interp? first_arg
@@ -278,8 +278,9 @@ class Brakeman::AliasProcessor < Brakeman::SexpProcessor
278
278
  env[target_var] = exp
279
279
  elsif string? first_arg and string_interp? target
280
280
  if string? target.last
281
- target.last.value << first_arg.value
281
+ target.last.value += first_arg.value
282
282
  elsif target.last.is_a? String
283
+ # TODO Use target.last += ?
283
284
  target.last << first_arg.value
284
285
  else
285
286
  target << first_arg
@@ -32,6 +32,7 @@ class Brakeman::Scanner
32
32
 
33
33
  @processor = processor || Brakeman::Processor.new(@app_tree, options)
34
34
  @show_timing = tracker.options[:debug] || tracker.options[:show_timing]
35
+ @per_file_timing = tracker.options[:debug] && tracker.options[:show_timing]
35
36
  end
36
37
 
37
38
  #Returns the Tracker generated from the scan
@@ -58,7 +59,7 @@ class Brakeman::Scanner
58
59
  end
59
60
 
60
61
  def process_step_file description
61
- if @show_timing
62
+ if @per_file_timing
62
63
  Brakeman.notify "Processing #{description}"
63
64
 
64
65
  start_t = Time.now
@@ -230,21 +231,29 @@ class Brakeman::Scanner
230
231
  #Process Gemfile
231
232
  def process_gems
232
233
  gem_files = {}
234
+ gem_file_names = ['Gemfile', 'gems.rb']
235
+ lock_file_names = ['Gemfile.lock', 'gems.locked']
233
236
 
234
- if @app_tree.exists? "Gemfile"
235
- file = @app_tree.file_path("Gemfile")
236
- gem_files[:gemfile] = { :src => parse_ruby_file(file), :file => file }
237
- elsif @app_tree.exists? "gems.rb"
238
- file = @app_tree.file_path("gems.rb")
239
- gem_files[:gemfile] = { :src => parse_ruby_file(file), :file => file }
237
+ if tracker.options[:gemfile]
238
+ name = tracker.options[:gemfile]
239
+ gem_file_names.unshift name
240
+ lock_file_names.unshift "#{name}.lock"
240
241
  end
241
242
 
242
- if @app_tree.exists? "Gemfile.lock"
243
- file = @app_tree.file_path("Gemfile.lock")
244
- gem_files[:gemlock] = { :src => file.read, :file => file }
245
- elsif @app_tree.exists? "gems.locked"
246
- file = @app_tree.file_path("gems.locked")
247
- gem_files[:gemlock] = { :src => file.read, :file => file }
243
+ gem_file_names.each do |name|
244
+ if @app_tree.exists? name
245
+ file = @app_tree.file_path(name)
246
+ gem_files[:gemfile] = { :src => parse_ruby_file(file), :file => file }
247
+ break
248
+ end
249
+ end
250
+
251
+ lock_file_names.each do |name|
252
+ if @app_tree.exists? name
253
+ file = @app_tree.file_path(name)
254
+ gem_files[:gemlock] = { :src => file.read, :file => file }
255
+ break
256
+ end
248
257
  end
249
258
 
250
259
  if @app_tree.gemspec
@@ -1,3 +1,3 @@
1
1
  module Brakeman
2
- Version = "7.0.0"
2
+ Version = "7.0.1"
3
3
  end
data/lib/brakeman.rb CHANGED
@@ -127,6 +127,13 @@ module Brakeman
127
127
  options[:output_formats] = get_output_formats options
128
128
  options[:github_url] = get_github_url options
129
129
 
130
+
131
+ # Use ENV value only if option was not already explicitly set
132
+ # (i.e. prefer commandline option over environment variable).
133
+ if options[:gemfile].nil? and ENV['BUNDLE_GEMFILE']
134
+ options[:gemfile] = ENV['BUNDLE_GEMFILE']
135
+ end
136
+
130
137
  options
131
138
  end
132
139
 
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brakeman-min
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Collins
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 2024-12-31 00:00:00.000000000 Z
11
+ date: 2025-04-04 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: minitest
@@ -334,6 +335,7 @@ metadata:
334
335
  mailing_list_uri: https://gitter.im/presidentbeef/brakeman
335
336
  source_code_uri: https://github.com/presidentbeef/brakeman
336
337
  wiki_uri: https://github.com/presidentbeef/brakeman/wiki
338
+ post_install_message:
337
339
  rdoc_options: []
338
340
  require_paths:
339
341
  - lib
@@ -348,7 +350,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
348
350
  - !ruby/object:Gem::Version
349
351
  version: '0'
350
352
  requirements: []
351
- rubygems_version: 3.6.2
353
+ rubygems_version: 3.3.27
354
+ signing_key:
352
355
  specification_version: 4
353
356
  summary: Security vulnerability scanner for Ruby on Rails.
354
357
  test_files: []