vtk 1.0.0 → 1.2.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 +4 -4
- data/.github/workflows/main.yml +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +39 -0
- data/README.md +109 -0
- data/lib/vtk/cli.rb +3 -0
- data/lib/vtk/commands/scan/README.md +102 -0
- data/lib/vtk/commands/scan/credentials.rb +59 -0
- data/lib/vtk/commands/scan/machine.rb +60 -0
- data/lib/vtk/commands/scan/repo.rb +77 -0
- data/lib/vtk/commands/scan.rb +75 -0
- data/lib/vtk/commands/socks/setup.rb +4 -4
- data/lib/vtk/version.rb +1 -1
- data/scripts/credential-audit.ps1 +620 -0
- data/scripts/credential-audit.sh +535 -0
- data/scripts/shai-hulud-machine-check.ps1 +625 -0
- data/scripts/shai-hulud-machine-check.sh +531 -0
- data/scripts/shai-hulud-repo-check.ps1 +615 -0
- data/scripts/shai-hulud-repo-check.sh +849 -0
- metadata +14 -6
metadata
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vtk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Boehs
|
|
8
8
|
- Lindsey Hattamer
|
|
9
9
|
- Travis Hilton
|
|
10
|
-
autorequire:
|
|
11
10
|
bindir: exe
|
|
12
11
|
cert_chain: []
|
|
13
|
-
date:
|
|
12
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
14
13
|
dependencies:
|
|
15
14
|
- !ruby/object:Gem::Dependency
|
|
16
15
|
name: thor
|
|
@@ -91,6 +90,11 @@ files:
|
|
|
91
90
|
- lib/vtk/commands/module/model.rb
|
|
92
91
|
- lib/vtk/commands/module/serializer.rb
|
|
93
92
|
- lib/vtk/commands/module/service.rb
|
|
93
|
+
- lib/vtk/commands/scan.rb
|
|
94
|
+
- lib/vtk/commands/scan/README.md
|
|
95
|
+
- lib/vtk/commands/scan/credentials.rb
|
|
96
|
+
- lib/vtk/commands/scan/machine.rb
|
|
97
|
+
- lib/vtk/commands/scan/repo.rb
|
|
94
98
|
- lib/vtk/commands/socks.rb
|
|
95
99
|
- lib/vtk/commands/socks/off.rb
|
|
96
100
|
- lib/vtk/commands/socks/on.rb
|
|
@@ -101,6 +105,12 @@ files:
|
|
|
101
105
|
- lib/vtk/templates/socks/setup/gov.va.socks.plist.erb
|
|
102
106
|
- lib/vtk/templates/socks/setup/va_gov_socks.service.erb
|
|
103
107
|
- lib/vtk/version.rb
|
|
108
|
+
- scripts/credential-audit.ps1
|
|
109
|
+
- scripts/credential-audit.sh
|
|
110
|
+
- scripts/shai-hulud-machine-check.ps1
|
|
111
|
+
- scripts/shai-hulud-machine-check.sh
|
|
112
|
+
- scripts/shai-hulud-repo-check.ps1
|
|
113
|
+
- scripts/shai-hulud-repo-check.sh
|
|
104
114
|
- vtk.gemspec
|
|
105
115
|
homepage: https://github.com/department-of-veterans-affairs/vtk
|
|
106
116
|
licenses:
|
|
@@ -111,7 +121,6 @@ metadata:
|
|
|
111
121
|
source_code_uri: https://github.com/department-of-veterans-affairs/vtk
|
|
112
122
|
changelog_uri: https://github.com/department-of-veterans-affairs/vtk/blob/master/CHANGELOG.md
|
|
113
123
|
rubygems_mfa_required: 'true'
|
|
114
|
-
post_install_message:
|
|
115
124
|
rdoc_options: []
|
|
116
125
|
require_paths:
|
|
117
126
|
- lib
|
|
@@ -126,8 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
135
|
- !ruby/object:Gem::Version
|
|
127
136
|
version: '0'
|
|
128
137
|
requirements: []
|
|
129
|
-
rubygems_version:
|
|
130
|
-
signing_key:
|
|
138
|
+
rubygems_version: 4.0.3
|
|
131
139
|
specification_version: 4
|
|
132
140
|
summary: A CLI for the platform
|
|
133
141
|
test_files: []
|