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

Commit e719b65

Browse files
authored
Merge pull request #14 from rtfpessoa/sundus-y-master
Add option to ignore vulnerabilities by the id
2 parents fe53b7d + f0d6625 commit e719b65

File tree

8 files changed

+69
-31
lines changed

8 files changed

+69
-31
lines changed

Gemfile.lock

+26-18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
dependency_spy (0.4.1)
4+
dependency_spy (0.5.0)
55
bibliothecary (~> 6.6)
66
colorize (= 0.8.1)
77
semantic_range (~> 2.2)
@@ -13,12 +13,14 @@ GEM
1313
specs:
1414
ansi (1.5.0)
1515
ast (2.4.0)
16-
bibliothecary (6.6.0)
16+
bibliothecary (6.7.3)
1717
commander
1818
deb_control
1919
librariesio-gem-parser
2020
ox (>= 2.8.1)
2121
sdl4r
22+
strings
23+
strings-ansi
2224
toml-rb (~> 1.0)
2325
typhoeus
2426
citrus (3.0.2)
@@ -29,21 +31,21 @@ GEM
2931
highline (~> 2.0.0)
3032
deb_control (0.0.1)
3133
diff-lcs (1.3)
32-
docile (1.3.1)
34+
docile (1.3.2)
3335
ethon (0.12.0)
3436
ffi (>= 1.3.0)
3537
execjs (2.7.0)
36-
ffi (1.11.0)
38+
ffi (1.11.1)
3739
highline (2.0.2)
38-
jaro_winkler (1.5.2)
40+
jaro_winkler (1.5.3)
3941
json (2.2.0)
40-
kramdown (1.17.0)
42+
kramdown (2.1.0)
4143
librariesio-gem-parser (1.0.0)
4244
libv8 (3.16.14.19-x86_64-linux)
4345
oga (2.15)
4446
ast
4547
ruby-ll (~> 2.1)
46-
ox (2.10.0)
48+
ox (2.11.0)
4749
parallel (1.17.0)
4850
parser (2.6.3.0)
4951
ast (~> 2.4.0)
@@ -56,16 +58,16 @@ GEM
5658
rspec-mocks (~> 3.8.0)
5759
rspec-collection_matchers (1.1.3)
5860
rspec-expectations (>= 2.99.0.beta1)
59-
rspec-core (3.8.0)
61+
rspec-core (3.8.2)
6062
rspec-support (~> 3.8.0)
61-
rspec-expectations (3.8.3)
63+
rspec-expectations (3.8.4)
6264
diff-lcs (>= 1.2.0, < 2.0)
6365
rspec-support (~> 3.8.0)
64-
rspec-mocks (3.8.0)
66+
rspec-mocks (3.8.1)
6567
diff-lcs (>= 1.2.0, < 2.0)
6668
rspec-support (~> 3.8.0)
67-
rspec-support (3.8.0)
68-
rubocop (0.69.0)
69+
rspec-support (3.8.2)
70+
rubocop (0.72.0)
6971
jaro_winkler (~> 1.5.1)
7072
parallel (~> 1.10)
7173
parser (>= 2.6)
@@ -77,15 +79,20 @@ GEM
7779
ruby-ll (2.1.2)
7880
ansi
7981
ast
80-
ruby-progressbar (1.10.0)
82+
ruby-progressbar (1.10.1)
8183
sdl4r (0.9.11)
8284
semantic_interval (0.1.0)
8385
semantic_range (2.2.1)
84-
simplecov (0.16.1)
86+
simplecov (0.17.0)
8587
docile (~> 1.1)
8688
json (>= 1.8, < 3)
8789
simplecov-html (~> 0.10.0)
8890
simplecov-html (0.10.2)
91+
strings (0.1.5)
92+
strings-ansi (~> 0.1)
93+
unicode-display_width (~> 1.5)
94+
unicode_utils (~> 1.4)
95+
strings-ansi (0.1.0)
8996
therubyracer (0.12.3)
9097
libv8 (~> 3.16.14.15)
9198
ref
@@ -95,10 +102,11 @@ GEM
95102
typhoeus (1.3.1)
96103
ethon (>= 0.9.0)
97104
unicode-display_width (1.6.0)
98-
yavdb (0.5.1)
99-
execjs (~> 2.7.0)
100-
json (~> 2.1)
101-
kramdown (~> 1.17)
105+
unicode_utils (1.4.0)
106+
yavdb (0.5.2)
107+
execjs (~> 2.7)
108+
json (~> 2.2)
109+
kramdown (~> 2.1)
102110
oga (~> 2.15)
103111
semantic_interval (~> 0.1)
104112
therubyracer (~> 0.12)

lib/dependency_spy.rb

+14-2
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,20 @@
2828
module DependencySpy
2929
class API
3030

31-
def self.check(path = Dir.pwd, files = nil, platform = nil, database_path = YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH, offline = false)
31+
def self.check(options)
32+
verbose = options[:verbose]
33+
path = options[:path] || Dir.pwd
34+
files = options[:files]
35+
platform = options[:platform]
36+
database_path = options[:database_path] || YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH
37+
offline = options[:offline] || false
38+
ignore = options[:ignore] || []
39+
3240
if !File.exist?(database_path) && offline
3341
puts 'No local database found. Cannot obtain database since offline mode is enabled.'
3442
exit(10)
3543
elsif !offline
36-
puts 'Going to update the local vulnerability database.'
44+
puts 'Going to update the local vulnerability database.' if verbose
3745
YAVDB::API.download_database(false, YAVDB::Constants::DEFAULT_YAVDB_PATH)
3846
end
3947

@@ -64,9 +72,13 @@ def self.check(path = Dir.pwd, files = nil, platform = nil, database_path = YAVD
6472
vulnerable = vuln.vulnerable_versions ? vuln.vulnerable_versions.any? { |vv| DependencySpy::SemVer.intersects(vv, version) } : false
6573
unaffected = vuln.unaffected_versions ? vuln.unaffected_versions.any? { |vu| DependencySpy::SemVer.intersects(vu, version) } : false
6674
patched = vuln.patched_versions ? vuln.patched_versions.any? { |vp| DependencySpy::SemVer.intersects(vp, version) } : false
75+
ignored = ignore.include?(vuln.id)
6776

6877
if unaffected || patched
6978
false
79+
elsif ignored
80+
puts "Skipping ignored vulnerability with #{vuln.id}." if verbose
81+
false
7082
else
7183
vulnerable
7284
end

lib/dependency_spy/cli.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ class CLI < Thor
4949
method_option('offline', :type => :boolean, :default => false)
5050
method_option('severity-threshold', :aliases => :s, :type => :string, :enum => YAVDB::Constants::SEVERITIES, :default => 'low')
5151
method_option('with-color', :type => :boolean, :default => true)
52+
method_option('ignore', :aliases => :i, :type => :array, :default => [])
5253
def check
53-
manifests = API.check(options['path'], options['files'], options['platform'], options['database-path'], options['offline'])
54+
manifests = API.check(options)
5455

5556
formatted_output = if (options['formatter'] == 'text') && !options['output-path'] && options['with-color']
5657
DependencySpy::Formatters::Text.format(manifests, options['severity-threshold'])

lib/dependency_spy/formatters/json.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def self.format(manifests)
2929

3030
filtered_manifests
3131
.reject { |m| m[:dependencies].nil? }
32-
.map(&:to_json)
32+
.to_json
3333
end
3434

3535
end

lib/dependency_spy/formatters/text.rb

+7-5
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,15 @@ def self.format(manifests, severity_threshold = nil)
2828

2929
package_header = " Vulnerable: #{package.name}/#{package.type}:#{package.version}"
3030
package_body = package.vulnerabilities.map do |vuln|
31-
first = " Title: #{vuln.title}\n"
32-
second = " Severity: #{(vuln.severity || 'unknown').capitalize}\n"
33-
third = " Source: #{vuln.source_url}\n\n"
31+
body = ''
32+
body += " Title: #{vuln.title}\n"
33+
body += " Severity: #{(vuln.severity || 'unknown').capitalize}\n"
34+
body += " Source: #{vuln.source_url}\n"
35+
body += " Identifier: #{vuln.id}\n\n"
3436
if severity_threshold && DependencySpy::Helper.severity_above_threshold?(vuln.severity, severity_threshold)
35-
"#{first}#{second}#{third}".red
37+
body.red
3638
else
37-
"#{first}#{second}#{third}"
39+
body
3840
end
3941
end
4042

lib/dependency_spy/formatters/yaml.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def self.format(manifests)
2929

3030
filtered_manifests
3131
.reject { |m| m[:dependencies].nil? }
32-
.map(&:to_json)
32+
.to_yaml
3333
end
3434

3535
end

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.4.1'
19+
VERSION = '0.5.0'
2020

2121
end

spec/dependency_spy_spec.rb

+17-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
RSpec.describe DependencySpy::API do
2020
describe 'check' do
21-
detected_manifests = DependencySpy::API.check('examples')
21+
detected_manifests = DependencySpy::API.check(:path => 'examples')
2222

2323
it 'can read all manifests inside examples' do
2424
expect(detected_manifests).to have(5).items
@@ -34,7 +34,7 @@
3434
manifests = detected_manifests.select { |m| m.platform == 'npm' }
3535
dependencies = manifests.map(&:dependencies).flatten
3636
vulnerabilities = dependencies.map(&:vulnerabilities).flatten
37-
expect(vulnerabilities).to have(118).items
37+
expect(vulnerabilities).to have(121).items
3838
end
3939

4040
it 'can read all dependencies for rubygems manifest' do
@@ -49,5 +49,20 @@
4949
vulnerabilities = dependencies.map(&:vulnerabilities).flatten
5050
expect(vulnerabilities).to have(3).items
5151
end
52+
53+
it 'can ignore vulnerabilities by id' do
54+
manifests = detected_manifests.select { |m| m.platform == 'rubygems' }
55+
dependencies = manifests.map(&:dependencies).flatten
56+
vulnerabilities = dependencies.map(&:vulnerabilities).flatten
57+
select_count = vulnerabilities.select { |v| v.id == 'snykio:rubygems:rubocop:20447' }.count
58+
expect(select_count).to eq(1)
59+
60+
filtered_detected_manifests = DependencySpy::API.check(:path => 'examples', :ignore => ['snykio:rubygems:rubocop:20447'])
61+
manifests = filtered_detected_manifests.select { |m| m.platform == 'rubygems' }
62+
dependencies = manifests.map(&:dependencies).flatten
63+
vulnerabilities = dependencies.map(&:vulnerabilities).flatten
64+
select_count = vulnerabilities.select { |v| v.id == 'snykio:rubygems:rubocop:20447' }.count
65+
expect(select_count).to eq(0)
66+
end
5267
end
5368
end

0 commit comments

Comments
 (0)