Skip to content
This repository was archived by the owner on Jul 24, 2021. It is now read-only.

Commit 2a2d162

Browse files
committed
Fix false nagetive when using patched and unaffected
1 parent 89a88d0 commit 2a2d162

File tree

7 files changed

+26
-12
lines changed

7 files changed

+26
-12
lines changed

.circleci/config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
paths:
2727
- /tmp/vendor/bundle
2828

29+
- name: Vulnerable dependencies
30+
type: shell
31+
command: bundle exec depspy check --files Gemfile,Gemfile.lock
32+
2933
- name: Rubocop
3034
type: shell
3135
command: bundle exec rubocop

Gemfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PATH
22
remote: .
33
specs:
4-
dependency_spy (0.1.4)
4+
dependency_spy (0.2.0)
55
bibliothecary (~> 6.3)
66
semantic_range (~> 2.1)
77
thor (~> 0.20)
8-
yavdb (~> 0.1)
8+
yavdb (~> 0.2)
99

1010
GEM
1111
remote: https://rubygems.org/
@@ -89,7 +89,7 @@ GEM
8989
typhoeus (1.3.0)
9090
ethon (>= 0.9.0)
9191
unicode-display_width (1.4.0)
92-
yavdb (0.1.2)
92+
yavdb (0.2.0)
9393
json (~> 2.1)
9494
kramdown (~> 1.17)
9595
oga (~> 2.15)

dependency_spy.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ Gem::Specification.new do |spec|
3838
spec.add_runtime_dependency 'bibliothecary', ['~> 6.3']
3939
spec.add_runtime_dependency 'semantic_range', ['~> 2.1']
4040
spec.add_runtime_dependency 'thor', ['~> 0.20']
41-
spec.add_runtime_dependency 'yavdb', ['~> 0.1']
41+
spec.add_runtime_dependency 'yavdb', ['~> 0.2']
4242
end

lib/dependency_spy.rb

+9-5
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,17 @@
2828
module DependencySpy
2929
class API
3030

31-
def self.check(path = Dir.pwd, platform = nil, database_path = YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH)
31+
def self.check(path = Dir.pwd, files = nil, platform = nil, database_path = YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH)
3232
unless File.exist?(database_path)
3333
puts 'Could not find local vulnerability database, going to download the database.'
3434
YAVDB::API.download_database(false, YAVDB::Constants::DEFAULT_YAVDB_PATH)
3535
end
3636

3737
path = File.expand_path(path)
3838
package_managers = find_platform(platform)
39-
file_list = if File.file?(path)
39+
file_list = if !files.nil?
40+
files.split(',')
41+
elsif File.file?(path)
4042
path = File.dirname(path)
4143
[File.basename(path)]
4244
else
@@ -61,9 +63,11 @@ def self.check(path = Dir.pwd, platform = nil, database_path = YAVDB::Constants:
6163
unaffected = vuln.unaffected_versions ? vuln.unaffected_versions.any? { |vu| DependencySpy::SemVer.intersects(vu, version) } : false
6264
patched = vuln.patched_versions ? vuln.patched_versions.any? { |vp| DependencySpy::SemVer.intersects(vp, version) } : false
6365

64-
vulnerable ||
65-
(vuln.unaffected_versions&.any? && !unaffected) ||
66-
(vuln.patched_versions&.any? && !patched)
66+
if unaffected || patched
67+
false
68+
else
69+
vulnerable
70+
end
6771
end
6872

6973
Dependency.new(package_name, version, type, vulnerabilities.uniq)

lib/dependency_spy/cli.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,14 @@ class CLI < Thor
4040

4141
desc('check', 'Check dependencies for known vulnerabilities')
4242
method_option('path', :aliases => :p, :type => :string, :default => Dir.pwd)
43+
method_option('files', :type => :string)
4344
method_option('formatter', :aliases => :f, :type => :string, :enum => FORMATTERS.map { |f| f.name.split('::').last.downcase }, :default => FORMATTERS.first.name.split('::').last.downcase)
4445
method_option('platform', :aliases => :m, :type => :string, :enum => YAVDB::Constants::POSSIBLE_PACKAGE_MANAGERS.map(&:downcase))
4546
method_option('output-path', :aliases => :o, :type => :string)
4647
method_option('database-path', :type => :string, :aliases => :p, :default => YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH)
4748

4849
def check
49-
manifests = API.check(options['path'], options['platform'], options['database-path'])
50+
manifests = API.check(options['path'], options['files'], options['platform'], options['database-path'])
5051

5152
formatted_output =
5253
FORMATTERS
@@ -58,6 +59,11 @@ def check
5859
else
5960
DependencySpy::Outputs::StdOut.write(formatted_output)
6061
end
62+
63+
has_vulnerabilities =
64+
manifests.any? { |manifest| manifest.dependencies.any? { |dependency| dependency.vulnerabilities.any? } }
65+
66+
exit(1) if has_vulnerabilities
6167
end
6268

6369
method_option('vuln-db-path', :aliases => :d, :type => :string, :default => YAVDB::Constants::DEFAULT_YAVDB_PATH)

lib/dependency_spy/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616

1717
module DependencySpy
1818

19-
VERSION = '0.1.4'
19+
VERSION = '0.2.0'
2020

2121
end

spec/dependency_spy_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
manifests = detected_manifests.select { |m| m.platform == 'rubygems' }
4848
dependencies = manifests.map(&:dependencies).flatten
4949
vulnerabilities = dependencies.map(&:vulnerabilities).flatten
50-
expect(vulnerabilities).to have(11).items
50+
expect(vulnerabilities).to have(3).items
5151
end
5252
end
5353
end

0 commit comments

Comments
 (0)