dccscr 0.2.2 → 0.3.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: fb980c1757d630d37ffb78c3fd249a730f511965ace798021554f82fe8e5a361
4
- data.tar.gz: e5e8910e8dadfb3caef955914693aaa8bf8ba0c206ae2eee622bde5367d4bbcf
3
+ metadata.gz: 8954b4af554f62fddde9626b2c81c9d5372f80ab598de160949010cd6cc9bbc3
4
+ data.tar.gz: d4b647df03a1c76a4ea2a6b5ab83d07bf401879ba796278e1ac27a76f5f0fedc
5
5
  SHA512:
6
- metadata.gz: 6090ea3324a05e5792261e5172b3daa36b6504652a97e1895fe27b9e0f00dfd94b1c2c3792de95494697900c99d9cb15697f89d20be4ef22c057041f1d02379a
7
- data.tar.gz: 17ce549bd4c2f16a0632d1c571df9bd0e65a229972244402f0edb3a0e5f898ca830690c3c625a5c474de6d883aef84751cd816a0840f51baf52682a1b3fa7e65
6
+ metadata.gz: '08f9ae8ebfd9c6f09cae029728f5a50bdd3f57aa316429231c5f2b90e6884a644cf195a3dc24f142f497c4861850368e259ca5efcfe561b298a15938f244cc11'
7
+ data.tar.gz: 816c17205b0fbfad164016f8df53ec177ab5217576279347be27f3c1990d9b3b9a931bfc73729830e299f666c7f226dd86c6ea080c0c69ad3b89552b8f9348e1
data/.gitlab-ci.yml CHANGED
@@ -1,9 +1,16 @@
1
1
  image: ruby:2.7.3
2
-
3
- before_script:
2
+ example_job:
3
+ before_script:
4
4
  - gem install bundler -v 2.2.17
5
5
  - bundle install
6
-
7
- example_job:
8
6
  script:
9
- - bundle exec rake
7
+ - bundle exec rake
8
+ stages:
9
+ - test
10
+ sast:
11
+ stage: test
12
+ include:
13
+ - template: Security/SAST.gitlab-ci.yml
14
+ - template: Security/Dependency-Scanning.gitlab-ci.yml
15
+ - template: Security/Secret-Detection.gitlab-ci.yml
16
+ - template: Security/License-Scanning.gitlab-ci.yml
data/.rubocop.yml CHANGED
@@ -11,6 +11,9 @@ Metrics/MethodLength:
11
11
  Naming/InclusiveLanguage:
12
12
  Enabled: false
13
13
 
14
+ Naming/MemoizedInstanceVariableName:
15
+ Enabled: false
16
+
14
17
  Naming/MethodParameterName:
15
18
  MinNameLength: 2
16
19
 
@@ -23,9 +26,15 @@ Style/ConditionalAssignment:
23
26
  Style/HashConversion:
24
27
  Enabled: false
25
28
 
29
+ Style/ClassAndModuleChildren:
30
+ Enabled: false
31
+
26
32
  Style/SpecialGlobalVars:
27
33
  Enabled: false
28
34
 
35
+ Style/SignalException:
36
+ Enabled: false
37
+
29
38
  Style/StringLiterals:
30
39
  Enabled: true
31
40
  EnforcedStyle: single_quotes
data/Gemfile CHANGED
@@ -6,9 +6,10 @@ source 'https://rubygems.org'
6
6
  gemspec
7
7
 
8
8
  gem 'rake', '~> 13.0'
9
+ gem 'rubocop-rake'
9
10
 
10
11
  gem 'minitest', '~> 5.0'
12
+ gem 'minitest-ok', '~> 0.3.3'
13
+ gem 'rubocop-minitest'
11
14
 
12
15
  gem 'rubocop', '~> 1.7'
13
- gem 'rubocop-rake'
14
- gem 'rubocop-minitest'
data/Gemfile.lock CHANGED
@@ -1,13 +1,16 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dccscr (0.2.2)
4
+ dccscr (0.3.1)
5
+ shellwords (~> 0.1)
5
6
 
6
7
  GEM
7
8
  remote: https://rubygems.org/
8
9
  specs:
9
10
  ast (2.4.2)
10
11
  minitest (5.14.4)
12
+ minitest-ok (0.3.3)
13
+ minitest
11
14
  parallel (1.20.1)
12
15
  parser (3.0.2.0)
13
16
  ast (~> 2.4.1)
@@ -31,6 +34,7 @@ GEM
31
34
  rubocop-rake (0.6.0)
32
35
  rubocop (~> 1.0)
33
36
  ruby-progressbar (1.11.0)
37
+ shellwords (0.1.0)
34
38
  unicode-display_width (2.0.0)
35
39
 
36
40
  PLATFORMS
@@ -39,6 +43,7 @@ PLATFORMS
39
43
  DEPENDENCIES
40
44
  dccscr!
41
45
  minitest (~> 5.0)
46
+ minitest-ok (~> 0.3.3)
42
47
  rake (~> 13.0)
43
48
  rubocop (~> 1.7)
44
49
  rubocop-minitest
data/dccscr.gemspec CHANGED
@@ -26,8 +26,8 @@ Gem::Specification.new do |spec|
26
26
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
27
27
  spec.require_paths = ['lib']
28
28
 
29
- # Uncomment to register a new dependency of your gem
30
- # spec.add_dependency 'example-gem', '~> 1.0'
29
+ # ec.add_dependency 'shell', '~> 0.8'
30
+ spec.add_dependency 'shellwords', '~> 0.1'
31
31
 
32
32
  # For more information and examples about making a new gem, checkout our
33
33
  # guide at: https://bundler.io/guides/creating_gem.html
@@ -1,74 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'dccscr/whitelist'
4
+ require 'dccscr/whitelist/update_allowlist_with_dccscr'
5
5
 
6
- def load_dccscr_whitelist
7
- DCCSCR::Whitelist.new.tap do |wl|
8
- # load wl entries for args
9
- # will load parents as well
10
- ARGV.each { |arg| wl[arg] }
11
- end
12
- end
13
-
14
- def load_gitlab_allowlist
15
- if File.exist?('local-vulnerability-allowlist.yml')
16
- warn 'Loading local-vulnerability-allowlist.yml'
17
- YAML.safe_load(File.read('local-vulnerability-allowlist.yml'))
18
- elsif File.exist?('vulnerability-allowlist.yml')
19
- warn 'Loading and renaming vulnerability-allowlist.yml'
20
- YAML.safe_load(File.read('vulnerability-allowlist.yml'))
21
- File.rename('vulnerability-allowlist.yml', 'local-vulnerability-allowlist.yml')
22
- else
23
- warn 'No [local-]vulnerability-allowlist.yml'
24
- {}
25
- end
26
- end
27
-
28
- def allow_list_dccscr(wl)
29
- warn 'Generating dccscr list in gitlab format'
30
-
31
- {
32
- 'generalallowlist' => Hash[
33
- wl.entries.map { |_, entry|
34
- entry.value['whitelisted_vulnerabilities'].map { |v|
35
- [v['vulnerability'], "dccscr-whitelists:\n#{v['justification']}"]
36
- }.compact
37
- }.flatten(1).sort
38
- ]
39
- }
40
- end
41
-
42
- def combined_list(dl, ll)
43
- warn 'Merging dccscr and local lists'
44
-
45
- dl.merge(ll) { |_, d, l|
46
- case d
47
- when Hash
48
- d.merge(l)
49
- else
50
- l
51
- end
52
- }
53
- end
54
-
55
- def update_allow_list_file(cl)
56
- warn 'Updating vulnerability-allowlist.yml'
57
-
58
- File.open('vulnerability-allowlist.yml', 'w') do |f|
59
- f << cl.to_yaml
60
- end
61
- end
62
-
63
- def run
64
- ll = load_gitlab_allowlist
65
-
66
- wl = load_dccscr_whitelist
67
- dl = allow_list_dccscr(wl)
68
-
69
- cl = combined_list(dl, ll)
70
-
71
- update_allow_list_file(cl)
72
- end
73
-
74
- run
6
+ DCCSCR::Whitelist::UpdateAllowlistWithDCCSCR.new(
7
+ images: ARGV
8
+ ).run
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DCCSCR
4
- VERSION = '0.2.2'
4
+ VERSION = '0.3.1'
5
5
  end
@@ -3,6 +3,7 @@
3
3
  require 'json'
4
4
  require 'yaml'
5
5
  require 'tmpdir'
6
+ require 'shellwords'
6
7
 
7
8
  module DCCSCR
8
9
  # Class to download the dccscr_whitelist repo and store greylist entries.
@@ -26,12 +27,7 @@ module DCCSCR
26
27
  @repo = UPSTREAM_REPO
27
28
  end
28
29
 
29
- if clone
30
- raise('path exists and is not empty') unless Dir.empty?(@path)
31
-
32
- `git clone #{clone_options} #{@repo.inspect} #{@path.inspect}`
33
- $?.success? || raise('error cloning repo')
34
- end
30
+ clone_repo(clone_options) if clone
35
31
 
36
32
  @entries = {}
37
33
  end
@@ -46,10 +42,23 @@ module DCCSCR
46
42
  attr_reader :value, :parent
47
43
 
48
44
  def initialize(whitelist:, subpath:, greylist: "#{File.basename(subpath)}.greylist")
45
+ warn "Parse: #{File.join subpath, greylist}"
46
+
49
47
  @value = JSON.parse(File.read(File.join(whitelist.path, subpath, greylist)))
50
48
 
51
- whitelist[@parent] unless (@parent = @value['image_parent_name'])&.empty?
49
+ whitelist[@parent] unless (@parent = @value['image_parent_name'] || '').empty?
52
50
  end
53
51
  end
52
+
53
+ private
54
+
55
+ def clone_repo(clone_options = '')
56
+ system Shellwords.join [].tap { |cmd|
57
+ cmd << %w[git clone]
58
+ cmd << Shellwords.split(clone_options).map { |w| Shellwords.escape(w) }
59
+ cmd << ['--', Shellwords.escape(@repo), Shellwords.escape(@path)]
60
+ }.flatten
61
+ $?.success? || fail('error cloning repo')
62
+ end
54
63
  end
55
64
  end
@@ -0,0 +1,96 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require_relative '../whitelist'
5
+
6
+ # Service class to update a GitLab vulnerability-allowlist.yml with
7
+ # whitelisted_vulnerabilities from the dccscr-whitelist for a set
8
+ # of images.
9
+ #
10
+ class DCCSCR::Whitelist::UpdateAllowlistWithDCCSCR
11
+ attr_reader :images, :allow_filename, :local_filename
12
+
13
+ def initialize(images: [], allow_filename: nil, local_filename: nil)
14
+ @images = images
15
+ @allow_filename = allow_filename || 'vulnerability-allowlist.yml'
16
+ @local_filename = local_filename || 'local-vulnerability-allowlist.yml'
17
+ end
18
+
19
+ def whitelist
20
+ @_whitelist ||= DCCSCR::Whitelist.new
21
+ end
22
+
23
+ def run
24
+ ll = load_gitlab_allowlist
25
+
26
+ wl = load_dccscr_whitelist
27
+ dl = allow_list_dccscr(wl)
28
+
29
+ cl = combined_list(dl, ll)
30
+
31
+ update_allow_list_file(cl)
32
+ end
33
+
34
+ private
35
+
36
+ def load_dccscr_whitelist
37
+ whitelist.tap do |wl|
38
+ # load wl entries for args
39
+ # will load parents as well
40
+ images.each { |arg| wl[arg] }
41
+ end
42
+ end
43
+
44
+ def load_gitlab_allowlist
45
+ if File.exist?(local_filename)
46
+ warn 'Loading local file'
47
+ load(local_filename)
48
+ elsif File.exist?(allow_filename)
49
+ warn 'Loading and renaming local allow file'
50
+ File.rename(allow_filename, local_filename)
51
+ load(local_filename)
52
+ else
53
+ warn 'No local allow file'
54
+ {}
55
+ end
56
+ end
57
+
58
+ def load(yml)
59
+ YAML.safe_load(File.read(yml))
60
+ end
61
+
62
+ def allow_list_dccscr(wl)
63
+ warn 'Generating dccscr list in gitlab format'
64
+
65
+ {
66
+ 'generalallowlist' => Hash[
67
+ wl.entries.map { |_, entry|
68
+ entry.value['whitelisted_vulnerabilities'].map { |v|
69
+ [v['vulnerability'], "dccscr-whitelists:\n#{v['justification']}"]
70
+ }.compact
71
+ }.flatten(1).sort
72
+ ]
73
+ }
74
+ end
75
+
76
+ def combined_list(dl, ll)
77
+ warn 'Merging dccscr and local lists'
78
+
79
+ dl.merge(ll) { |_, d, l|
80
+ case d
81
+ when Hash
82
+ d.merge(l)
83
+ else
84
+ l
85
+ end
86
+ }
87
+ end
88
+
89
+ def update_allow_list_file(cl)
90
+ warn 'Updating allow file'
91
+
92
+ File.open(allow_filename, 'w') do |f|
93
+ f << cl.to_yaml
94
+ end
95
+ end
96
+ end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dccscr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frank J. Cameron
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-07 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2021-08-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: shellwords
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.1'
13
27
  description:
14
28
  email:
15
29
  - fjc@fastmail.net
@@ -34,6 +48,7 @@ files:
34
48
  - lib/dccscr.rb
35
49
  - lib/dccscr/version.rb
36
50
  - lib/dccscr/whitelist.rb
51
+ - lib/dccscr/whitelist/update_allowlist_with_dccscr.rb
37
52
  homepage: https://gitlab.com/fjc/dccscr.rb
38
53
  licenses:
39
54
  - MIT