dccscr 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 617eae30347338acd467d9b6e3fdbb39c98263657fa8e4caa57eca15890f81ad
4
+ data.tar.gz: '09ced8194847fe70669147f19a39d6897b5bf8629cffb4047ab9c89c63666f56'
5
+ SHA512:
6
+ metadata.gz: 5c109477378e93fc74be29651ef02b4ac5e0e26beda4a71c623d27c9b5522fdeb7d45075c14b0f3ae40cbba7eedacc8cfcd0ce72e9f0b70b5a321c28cbe8efa6
7
+ data.tar.gz: 0e8bf782254e2ae32263399f166209ebf551aa8bba9c97ad2ae8cf22f85b522f04d2b46d12a00dde978341fbcd6e5bb37685f1de1376f13a96c9509ed19cda2c
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /vendor/
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,9 @@
1
+ image: ruby:2.7.3
2
+
3
+ before_script:
4
+ - gem install bundler -v 2.2.17
5
+ - bundle install
6
+
7
+ example_job:
8
+ script:
9
+ - bundle exec rake
data/.rubocop.yml ADDED
@@ -0,0 +1,32 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.5
3
+ NewCops: enable
4
+
5
+ Bundler/OrderedGems:
6
+ Enabled: false
7
+
8
+ Metrics/MethodLength:
9
+ Max: 20
10
+
11
+ Naming/InclusiveLanguage:
12
+ Enabled: false
13
+
14
+ Style/BlockDelimiters:
15
+ Enabled: false
16
+
17
+ Style/ConditionalAssignment:
18
+ Enabled: false
19
+
20
+ Style/HashConversion:
21
+ Enabled: false
22
+
23
+ Style/SpecialGlobalVars:
24
+ Enabled: false
25
+
26
+ Style/StringLiterals:
27
+ Enabled: true
28
+ EnforcedStyle: single_quotes
29
+
30
+ Style/StringLiteralsInInterpolation:
31
+ Enabled: true
32
+ EnforcedStyle: single_quotes
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2021-08-06
4
+
5
+ - Initial release
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in dccscr.gemspec
6
+ gemspec
7
+
8
+ gem 'rake', '~> 13.0'
9
+
10
+ gem 'minitest', '~> 5.0'
11
+
12
+ gem 'rubocop', '~> 1.7'
13
+ gem 'rubocop-rake'
14
+ gem 'rubocop-minitest'
data/Gemfile.lock ADDED
@@ -0,0 +1,48 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ dccscr (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.2)
10
+ minitest (5.14.4)
11
+ parallel (1.20.1)
12
+ parser (3.0.2.0)
13
+ ast (~> 2.4.1)
14
+ rainbow (3.0.0)
15
+ rake (13.0.6)
16
+ regexp_parser (2.1.1)
17
+ rexml (3.2.5)
18
+ rubocop (1.18.4)
19
+ parallel (~> 1.10)
20
+ parser (>= 3.0.0.0)
21
+ rainbow (>= 2.2.2, < 4.0)
22
+ regexp_parser (>= 1.8, < 3.0)
23
+ rexml
24
+ rubocop-ast (>= 1.8.0, < 2.0)
25
+ ruby-progressbar (~> 1.7)
26
+ unicode-display_width (>= 1.4.0, < 3.0)
27
+ rubocop-ast (1.9.0)
28
+ parser (>= 3.0.1.1)
29
+ rubocop-minitest (0.14.0)
30
+ rubocop (>= 0.90, < 2.0)
31
+ rubocop-rake (0.6.0)
32
+ rubocop (~> 1.0)
33
+ ruby-progressbar (1.11.0)
34
+ unicode-display_width (2.0.0)
35
+
36
+ PLATFORMS
37
+ ruby
38
+
39
+ DEPENDENCIES
40
+ dccscr!
41
+ minitest (~> 5.0)
42
+ rake (~> 13.0)
43
+ rubocop (~> 1.7)
44
+ rubocop-minitest
45
+ rubocop-rake
46
+
47
+ BUNDLED WITH
48
+ 2.2.17
data/LICENSE.txt ADDED
@@ -0,0 +1,19 @@
1
+ The MIT License (MIT)
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # DCCSCR
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/dccscr`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'dccscr'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install dccscr
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/dccscr.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rake/testtask'
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << 'test'
8
+ t.libs << 'lib'
9
+ t.test_files = FileList['test/**/*_test.rb']
10
+ end
11
+
12
+ require 'rubocop/rake_task'
13
+
14
+ RuboCop::RakeTask.new
15
+
16
+ task default: %i[test rubocop]
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'bundler/setup'
5
+ require 'dccscr'
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require 'pry'
12
+ # Pry.start
13
+
14
+ require 'irb'
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/dccscr.gemspec ADDED
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/dccscr/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'dccscr'
7
+ spec.version = DCCSCR::VERSION
8
+ spec.authors = ['Frank J. Cameron']
9
+ spec.email = ['fjc@fastmail.net']
10
+
11
+ spec.summary = 'Convert DoD DCCSCR vulnerability greylists to a GitLab vulnerability allowlist.'
12
+ spec.homepage = 'https://gitlab.com/fjc/dccscr.rb'
13
+ spec.license = 'MIT'
14
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
15
+
16
+ spec.metadata['homepage_uri'] = spec.homepage
17
+ spec.metadata['source_code_uri'] = spec.homepage
18
+ spec.metadata['changelog_uri'] = "#{spec.homepage}/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
24
+ end
25
+ spec.bindir = 'exe'
26
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ['lib']
28
+
29
+ # Uncomment to register a new dependency of your gem
30
+ # spec.add_dependency 'example-gem', '~> 1.0'
31
+
32
+ # For more information and examples about making a new gem, checkout our
33
+ # guide at: https://bundler.io/guides/creating_gem.html
34
+ end
@@ -0,0 +1,34 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require 'dccscr/whitelist'
5
+
6
+ wl = DCCSCR::Whitelist.new
7
+
8
+ ARGV.each { |arg| wl[arg] }
9
+
10
+ local_list = begin
11
+ YAML.safe_load(File.read('vulnerability-allowlist.yml'))
12
+ rescue Errno::ENOENT
13
+ warn $!.message
14
+ {}
15
+ end
16
+
17
+ dccscr_list = {
18
+ 'generalallowlist' => Hash[
19
+ wl.entries.map { |_, entry|
20
+ entry.value['whitelisted_vulnerabilities'].map { |v|
21
+ [v['vulnerability'], "dccscr-whitelists:\n#{v['justification']}"]
22
+ }
23
+ }.flatten(1).sort
24
+ ]
25
+ }
26
+
27
+ puts dccscr_list.merge(local_list) { |_, dl, ll|
28
+ case dl
29
+ when Hash
30
+ dl.merge(ll)
31
+ else
32
+ ll
33
+ end
34
+ }.to_yaml
data/lib/dccscr.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'dccscr/version'
4
+
5
+ module DCCSCR
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DCCSCR
4
+ VERSION = '0.1.0'
5
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'json'
4
+ require 'yaml'
5
+ require 'tmpdir'
6
+
7
+ module DCCSCR
8
+ # Class to download the dccscr_whitelist repo and store greylist entries.
9
+ #
10
+ class Whitelist
11
+ UPSTREAM_REPO = 'https://repo1.dso.mil/dsop/dccscr-whitelists.git'
12
+
13
+ attr_reader :path, :repo, :entries
14
+
15
+ def initialize(path: nil, repo: nil, clone: true, clone_options: '--depth 1')
16
+ if path
17
+ @path = path
18
+ else
19
+ @path = Dir.mktmpdir
20
+ at_exit { FileUtils.remove_entry @path }
21
+ end
22
+
23
+ if repo
24
+ @repo = repo
25
+ else
26
+ @repo = UPSTREAM_REPO
27
+ end
28
+
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
35
+
36
+ @entries = {}
37
+ end
38
+
39
+ def [](subpath)
40
+ entries[subpath] ||= Entry.new(whitelist: self, subpath: subpath)
41
+ end
42
+
43
+ # Internal class to hold a single greylist.
44
+ #
45
+ class Entry
46
+ attr_reader :value, :parent
47
+
48
+ def initialize(whitelist:, subpath:, greylist: "#{File.basename(subpath)}.greylist")
49
+ @value = JSON.parse(File.read(File.join(whitelist.path, subpath, greylist)))
50
+
51
+ whitelist[@parent] unless (@parent = @value['image_parent_name']).empty?
52
+ end
53
+ end
54
+ end
55
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dccscr
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Frank J. Cameron
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-08-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - fjc@fastmail.net
16
+ executables:
17
+ - dccscr_to_gitlab
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".gitignore"
22
+ - ".gitlab-ci.yml"
23
+ - ".rubocop.yml"
24
+ - CHANGELOG.md
25
+ - Gemfile
26
+ - Gemfile.lock
27
+ - LICENSE.txt
28
+ - README.md
29
+ - Rakefile
30
+ - bin/console
31
+ - bin/setup
32
+ - dccscr.gemspec
33
+ - exe/dccscr_to_gitlab
34
+ - lib/dccscr.rb
35
+ - lib/dccscr/version.rb
36
+ - lib/dccscr/whitelist.rb
37
+ homepage: https://gitlab.com/fjc/dccscr.rb
38
+ licenses:
39
+ - MIT
40
+ metadata:
41
+ homepage_uri: https://gitlab.com/fjc/dccscr.rb
42
+ source_code_uri: https://gitlab.com/fjc/dccscr.rb
43
+ changelog_uri: https://gitlab.com/fjc/dccscr.rb/CHANGELOG.md
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.5.0
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubygems_version: 3.1.6
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Convert DoD DCCSCR vulnerability greylists to a GitLab vulnerability allowlist.
63
+ test_files: []