inspec_tools 0.0.0.1.ENOTAG

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +662 -0
  3. data/LICENSE.md +15 -0
  4. data/README.md +329 -0
  5. data/Rakefile +30 -0
  6. data/exe/inspec_tools +14 -0
  7. data/lib/data/NIST_Map_02052020_CIS_Controls_Version_7.1_Implementation_Groups_1.2.xlsx +0 -0
  8. data/lib/data/NIST_Map_09212017B_CSC-CIS_Critical_Security_Controls_VER_6.1_Excel_9.1.2016.xlsx +0 -0
  9. data/lib/data/README.TXT +25 -0
  10. data/lib/data/U_CCI_List.xml +38403 -0
  11. data/lib/data/attributes.yml +23 -0
  12. data/lib/data/cci2html.xsl +136 -0
  13. data/lib/data/mapping.yml +17 -0
  14. data/lib/data/stig.csv +1 -0
  15. data/lib/data/threshold.yaml +83 -0
  16. data/lib/exceptions/impact_input_error.rb +6 -0
  17. data/lib/exceptions/severity_input_error.rb +6 -0
  18. data/lib/happy_mapper_tools/benchmark.rb +161 -0
  19. data/lib/happy_mapper_tools/cci_attributes.rb +66 -0
  20. data/lib/happy_mapper_tools/stig_attributes.rb +196 -0
  21. data/lib/happy_mapper_tools/stig_checklist.rb +99 -0
  22. data/lib/inspec_tools.rb +17 -0
  23. data/lib/inspec_tools/ckl.rb +20 -0
  24. data/lib/inspec_tools/cli.rb +31 -0
  25. data/lib/inspec_tools/csv.rb +101 -0
  26. data/lib/inspec_tools/help.rb +9 -0
  27. data/lib/inspec_tools/help/compliance.md +7 -0
  28. data/lib/inspec_tools/help/csv2inspec.md +5 -0
  29. data/lib/inspec_tools/help/inspec2ckl.md +5 -0
  30. data/lib/inspec_tools/help/inspec2csv.md +5 -0
  31. data/lib/inspec_tools/help/inspec2xccdf.md +5 -0
  32. data/lib/inspec_tools/help/pdf2inspec.md +6 -0
  33. data/lib/inspec_tools/help/summary.md +5 -0
  34. data/lib/inspec_tools/help/xccdf2inspec.md +5 -0
  35. data/lib/inspec_tools/inspec.rb +331 -0
  36. data/lib/inspec_tools/pdf.rb +136 -0
  37. data/lib/inspec_tools/plugin.rb +15 -0
  38. data/lib/inspec_tools/plugin_cli.rb +278 -0
  39. data/lib/inspec_tools/summary.rb +126 -0
  40. data/lib/inspec_tools/version.rb +8 -0
  41. data/lib/inspec_tools/xccdf.rb +155 -0
  42. data/lib/inspec_tools/xlsx_tool.rb +148 -0
  43. data/lib/inspec_tools_plugin.rb +7 -0
  44. data/lib/overrides/false_class.rb +5 -0
  45. data/lib/overrides/nil_class.rb +5 -0
  46. data/lib/overrides/object.rb +5 -0
  47. data/lib/overrides/string.rb +5 -0
  48. data/lib/overrides/true_class.rb +5 -0
  49. data/lib/utilities/csv_util.rb +14 -0
  50. data/lib/utilities/extract_nist_cis_mapping.rb +57 -0
  51. data/lib/utilities/extract_pdf_text.rb +20 -0
  52. data/lib/utilities/inspec_util.rb +435 -0
  53. data/lib/utilities/parser.rb +373 -0
  54. data/lib/utilities/text_cleaner.rb +69 -0
  55. metadata +359 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: aa90a549b6b0408ab1bfdad16a05836baa3f4bd6743ed2771de819f941b11544
4
+ data.tar.gz: f4dcc090152d34795159dcb13e8a3462f0f7acaff6135c58082cfed3d7d28e07
5
+ SHA512:
6
+ metadata.gz: 46706b5e8c26672971f16a4ad1b124e54fb174d34b8594e9a0bb46c4f023053c591e4e3e837a991542f6912c8a370943cdd96196d21c7f47031b1e04ae897c01
7
+ data.tar.gz: 11cbacd16167ab921adf2a73689cc7aa3a9757c3d4b6a97aa3350f3ee865b95c17e2562150aa65804838cb7079285accc9839a05083448f051a4c07647934f1c
@@ -0,0 +1,662 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased](https://github.com/mitre/inspec_tools/tree/HEAD)
4
+
5
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre11...HEAD)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Require a newer version of git-lite-version-bump for Windows support [\#178](https://github.com/mitre/inspec_tools/pull/178) ([rbclark](https://github.com/rbclark))
10
+
11
+ ## [v2.0.2.pre11](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre11) (2020-05-07)
12
+
13
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre10...v2.0.2.pre11)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - git-lite-version-bump 0.17.0 is not compatible with Windows [\#176](https://github.com/mitre/inspec_tools/pull/176) ([rbclark](https://github.com/rbclark))
18
+
19
+ ## [v2.0.2.pre10](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre10) (2020-05-06)
20
+
21
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre9...v2.0.2.pre10)
22
+
23
+ **Implemented enhancements:**
24
+
25
+ - Standardize Severity Tag on CVSS 3.0 Terms [\#107](https://github.com/mitre/inspec_tools/issues/107)
26
+
27
+ **Merged pull requests:**
28
+
29
+ - Standardize Output of Severity and Impact to CVSS v3.0 terms [\#174](https://github.com/mitre/inspec_tools/pull/174) ([Bialogs](https://github.com/Bialogs))
30
+
31
+ ## [v2.0.2.pre9](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre9) (2020-05-04)
32
+
33
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre8...v2.0.2.pre9)
34
+
35
+ **Implemented enhancements:**
36
+
37
+ - Ensure the output of our converters formats with a standard of 2-space [\#140](https://github.com/mitre/inspec_tools/issues/140)
38
+ - Ensure we do not create code that uses " where ' are the correct style [\#138](https://github.com/mitre/inspec_tools/issues/138)
39
+
40
+ **Fixed bugs:**
41
+
42
+ - Summary always returns 0 for profile errors [\#164](https://github.com/mitre/inspec_tools/issues/164)
43
+ - Multiple fields missing from CKL generated with inspec2ckl [\#150](https://github.com/mitre/inspec_tools/issues/150)
44
+ - update inspec2ckl to support both tag and sub-descriptions in output [\#148](https://github.com/mitre/inspec_tools/issues/148)
45
+
46
+ **Merged pull requests:**
47
+
48
+ - Apply fixes from CodeFactor [\#172](https://github.com/mitre/inspec_tools/pull/172) ([aaronlippold](https://github.com/aaronlippold))
49
+ - Add parameter to InspecUtils\#control\_status to specify when used for summary. [\#170](https://github.com/mitre/inspec_tools/pull/170) ([Bialogs](https://github.com/Bialogs))
50
+ - Generate Ruby with Single Quoted Strings [\#169](https://github.com/mitre/inspec_tools/pull/169) ([Bialogs](https://github.com/Bialogs))
51
+ - Update CKL parse method to dig into sub descriptions [\#168](https://github.com/mitre/inspec_tools/pull/168) ([Bialogs](https://github.com/Bialogs))
52
+
53
+ ## [v2.0.2.pre8](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre8) (2020-04-30)
54
+
55
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre7...v2.0.2.pre8)
56
+
57
+ **Fixed bugs:**
58
+
59
+ - CCI Information is blank in CKL output [\#147](https://github.com/mitre/inspec_tools/issues/147)
60
+ - STIG Viewer fails to validate CKL Schema [\#131](https://github.com/mitre/inspec_tools/issues/131)
61
+
62
+ **Closed issues:**
63
+
64
+ - Add integration tests to validate output Checklist against schema [\#62](https://github.com/mitre/inspec_tools/issues/62)
65
+
66
+ **Merged pull requests:**
67
+
68
+ - Break CCI Vuln Information into separate StigData [\#167](https://github.com/mitre/inspec_tools/pull/167) ([Bialogs](https://github.com/Bialogs))
69
+ - Missing array type for replace\_tags [\#166](https://github.com/mitre/inspec_tools/pull/166) ([Didar-Bhullar](https://github.com/Didar-Bhullar))
70
+ - 131 ckl schema [\#163](https://github.com/mitre/inspec_tools/pull/163) ([Bialogs](https://github.com/Bialogs))
71
+
72
+ ## [v2.0.2.pre7](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre7) (2020-04-28)
73
+
74
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre6...v2.0.2.pre7)
75
+
76
+ **Implemented enhancements:**
77
+
78
+ - Determine why we are getting odd terminal output at the end of an xccdf2inspec run [\#155](https://github.com/mitre/inspec_tools/issues/155)
79
+
80
+ **Closed issues:**
81
+
82
+ - Delete un-needed branches in the repo [\#157](https://github.com/mitre/inspec_tools/issues/157)
83
+ - Remove guardfile [\#141](https://github.com/mitre/inspec_tools/issues/141)
84
+
85
+ **Merged pull requests:**
86
+
87
+ - Remove Guardfile from Specfile [\#161](https://github.com/mitre/inspec_tools/pull/161) ([Bialogs](https://github.com/Bialogs))
88
+ - Updated README to standardize wording [\#160](https://github.com/mitre/inspec_tools/pull/160) ([Bialogs](https://github.com/Bialogs))
89
+ - Remove guardfile [\#159](https://github.com/mitre/inspec_tools/pull/159) ([Bialogs](https://github.com/Bialogs))
90
+ - Remove unnecessary debug output from xccdf2inspec [\#158](https://github.com/mitre/inspec_tools/pull/158) ([rbclark](https://github.com/rbclark))
91
+
92
+ ## [v2.0.2.pre6](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre6) (2020-04-28)
93
+
94
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.2.pre5...v2.0.2.pre6)
95
+
96
+ **Implemented enhancements:**
97
+
98
+ - Remove tag with NIST revision [\#139](https://github.com/mitre/inspec_tools/issues/139)
99
+
100
+ **Fixed bugs:**
101
+
102
+ - CCE- data seems to be coming into the CCI references in some XCCDF files [\#151](https://github.com/mitre/inspec_tools/issues/151)
103
+ - small fix to resolve issues with CCE data in the XCCDF [\#156](https://github.com/mitre/inspec_tools/pull/156) ([aaronlippold](https://github.com/aaronlippold))
104
+
105
+ **Closed issues:**
106
+
107
+ - update inspec2ckl schema to the newest CKL Schema in the stig viewer 2.10 [\#149](https://github.com/mitre/inspec_tools/issues/149)
108
+ - Categorize all errors the same [\#145](https://github.com/mitre/inspec_tools/issues/145)
109
+
110
+ **Merged pull requests:**
111
+
112
+ - Apply fixes from CodeFactor [\#153](https://github.com/mitre/inspec_tools/pull/153) ([aaronlippold](https://github.com/aaronlippold))
113
+
114
+ ## [v2.0.2.pre5](https://github.com/mitre/inspec_tools/tree/v2.0.2.pre5) (2020-04-15)
115
+
116
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre4...v2.0.2.pre5)
117
+
118
+ **Implemented enhancements:**
119
+
120
+ - Summary Error Count [\#132](https://github.com/mitre/inspec_tools/issues/132)
121
+ - change check and fix tags to sub-descriptions in xccdf2inspec [\#47](https://github.com/mitre/inspec_tools/issues/47)
122
+ - merge in the `merge\_tool` [\#42](https://github.com/mitre/inspec_tools/issues/42)
123
+ - InSpec 3.x Data features [\#22](https://github.com/mitre/inspec_tools/issues/22)
124
+
125
+ **Merged pull requests:**
126
+
127
+ - Ruby 2.6.6 and 2.7.1 update [\#143](https://github.com/mitre/inspec_tools/pull/143) ([Bialogs](https://github.com/Bialogs))
128
+
129
+ ## [v2.0.1.pre4](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre4) (2020-04-06)
130
+
131
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre3...v2.0.1.pre4)
132
+
133
+ **Closed issues:**
134
+
135
+ - consider how to convert impact 0 to Severity in inspec2ckl [\#60](https://github.com/mitre/inspec_tools/issues/60)
136
+
137
+ **Merged pull requests:**
138
+
139
+ - Add unit tests for XLSXTool and add system tests in CI [\#130](https://github.com/mitre/inspec_tools/pull/130) ([Bialogs](https://github.com/Bialogs))
140
+ - Apply fixes from CodeFactor [\#129](https://github.com/mitre/inspec_tools/pull/129) ([aaronlippold](https://github.com/aaronlippold))
141
+
142
+ ## [v2.0.1.pre3](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre3) (2020-04-03)
143
+
144
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre2...v2.0.1.pre3)
145
+
146
+ **Merged pull requests:**
147
+
148
+ - Cleanup xlsx2inspec Process of Adding NIST and CIS Controls to Inspec Controls [\#127](https://github.com/mitre/inspec_tools/pull/127) ([Bialogs](https://github.com/Bialogs))
149
+
150
+ ## [v2.0.1.pre2](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre2) (2020-04-02)
151
+
152
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.1.pre1...v2.0.1.pre2)
153
+
154
+ **Merged pull requests:**
155
+
156
+ - Missed some references to inspec/objects [\#126](https://github.com/mitre/inspec_tools/pull/126) ([Bialogs](https://github.com/Bialogs))
157
+ - Move to mitre/inspec-objects [\#125](https://github.com/mitre/inspec_tools/pull/125) ([Bialogs](https://github.com/Bialogs))
158
+
159
+ ## [v2.0.1.pre1](https://github.com/mitre/inspec_tools/tree/v2.0.1.pre1) (2020-04-02)
160
+
161
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v2.0.0...v2.0.1.pre1)
162
+
163
+ **Merged pull requests:**
164
+
165
+ - Pull lfs objects in when building the gem. [\#124](https://github.com/mitre/inspec_tools/pull/124) ([rbclark](https://github.com/rbclark))
166
+
167
+ ## [v2.0.0](https://github.com/mitre/inspec_tools/tree/v2.0.0) (2020-04-01)
168
+
169
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.10...v2.0.0)
170
+
171
+ **Fixed bugs:**
172
+
173
+ - xlsx2inspec failing to parse controls over two digits [\#117](https://github.com/mitre/inspec_tools/issues/117)
174
+
175
+ **Merged pull requests:**
176
+
177
+ - Update parse XLSXTool\#parse\_cis\_control to handle the case when there… [\#123](https://github.com/mitre/inspec_tools/pull/123) ([Bialogs](https://github.com/Bialogs))
178
+ - Track Inspec versions \>= 4.18.100 [\#122](https://github.com/mitre/inspec_tools/pull/122) ([Bialogs](https://github.com/Bialogs))
179
+ - Restructure workflow for publishing gem [\#121](https://github.com/mitre/inspec_tools/pull/121) ([rbclark](https://github.com/rbclark))
180
+
181
+ ## [v1.8.10](https://github.com/mitre/inspec_tools/tree/v1.8.10) (2020-03-30)
182
+
183
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.9...v1.8.10)
184
+
185
+ **Merged pull requests:**
186
+
187
+ - added two digit contol parsing fixes \#117 [\#120](https://github.com/mitre/inspec_tools/pull/120) ([yarick](https://github.com/yarick))
188
+
189
+ ## [v1.8.9](https://github.com/mitre/inspec_tools/tree/v1.8.9) (2020-03-30)
190
+
191
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.8...v1.8.9)
192
+
193
+ **Merged pull requests:**
194
+
195
+ - Fix bug in creating severity override guidance tags [\#118](https://github.com/mitre/inspec_tools/pull/118) ([Bialogs](https://github.com/Bialogs))
196
+
197
+ ## [v1.8.8](https://github.com/mitre/inspec_tools/tree/v1.8.8) (2020-03-30)
198
+
199
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.7...v1.8.8)
200
+
201
+ **Implemented enhancements:**
202
+
203
+ - add a `--json-full` and `--json-counts` option to the summary command - like the cli so I can pipe to jq [\#78](https://github.com/mitre/inspec_tools/issues/78)
204
+
205
+ **Merged pull requests:**
206
+
207
+ - Add --json-full and --json-summary options to summary subcommand [\#116](https://github.com/mitre/inspec_tools/pull/116) ([Bialogs](https://github.com/Bialogs))
208
+
209
+ ## [v1.8.7](https://github.com/mitre/inspec_tools/tree/v1.8.7) (2020-03-29)
210
+
211
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.6...v1.8.7)
212
+
213
+ ## [v1.8.6](https://github.com/mitre/inspec_tools/tree/v1.8.6) (2020-03-27)
214
+
215
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.5...v1.8.6)
216
+
217
+ **Closed issues:**
218
+
219
+ - GitHub Actions Build Matrix [\#112](https://github.com/mitre/inspec_tools/issues/112)
220
+
221
+ **Merged pull requests:**
222
+
223
+ - Update build/test process to only use GitHub actions [\#115](https://github.com/mitre/inspec_tools/pull/115) ([Bialogs](https://github.com/Bialogs))
224
+
225
+ ## [v1.8.5](https://github.com/mitre/inspec_tools/tree/v1.8.5) (2020-03-27)
226
+
227
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.4...v1.8.5)
228
+
229
+ **Implemented enhancements:**
230
+
231
+ - add "\# encoding: utf-8" to controls [\#54](https://github.com/mitre/inspec_tools/issues/54)
232
+
233
+ **Merged pull requests:**
234
+
235
+ - Add '\# encoding: UTF-8' to the top of all generated controls/\*.rb [\#114](https://github.com/mitre/inspec_tools/pull/114) ([Bialogs](https://github.com/Bialogs))
236
+
237
+ ## [v1.8.4](https://github.com/mitre/inspec_tools/tree/v1.8.4) (2020-03-27)
238
+
239
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.3...v1.8.4)
240
+
241
+ **Fixed bugs:**
242
+
243
+ - \[BUG\] inspec\_tools \> 1.7.1 getting unknown encoding name - UTF-8 \(RuntimeError\) [\#110](https://github.com/mitre/inspec_tools/issues/110)
244
+
245
+ **Merged pull requests:**
246
+
247
+ - Reorganize overrides [\#113](https://github.com/mitre/inspec_tools/pull/113) ([Bialogs](https://github.com/Bialogs))
248
+
249
+ ## [v1.8.3](https://github.com/mitre/inspec_tools/tree/v1.8.3) (2020-03-27)
250
+
251
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.2...v1.8.3)
252
+
253
+ **Merged pull requests:**
254
+
255
+ - Spaces cause interpreter not to pick up encoding correctly [\#111](https://github.com/mitre/inspec_tools/pull/111) ([Bialogs](https://github.com/Bialogs))
256
+
257
+ ## [v1.8.2](https://github.com/mitre/inspec_tools/tree/v1.8.2) (2020-03-25)
258
+
259
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.1...v1.8.2)
260
+
261
+ **Merged pull requests:**
262
+
263
+ - Gemspec Dependency Updates [\#109](https://github.com/mitre/inspec_tools/pull/109) ([Bialogs](https://github.com/Bialogs))
264
+
265
+ ## [v1.8.1](https://github.com/mitre/inspec_tools/tree/v1.8.1) (2020-03-24)
266
+
267
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.8.0...v1.8.1)
268
+
269
+ **Closed issues:**
270
+
271
+ - Please update the homepage in the gemspec to point to inspec-tools.mitre.org [\#105](https://github.com/mitre/inspec_tools/issues/105)
272
+
273
+ **Merged pull requests:**
274
+
275
+ - Update Gem homepage to https://inspec-tools.mitre.org/ [\#108](https://github.com/mitre/inspec_tools/pull/108) ([Bialogs](https://github.com/Bialogs))
276
+
277
+ ## [v1.8.0](https://github.com/mitre/inspec_tools/tree/v1.8.0) (2020-03-24)
278
+
279
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.3...v1.8.0)
280
+
281
+ **Closed issues:**
282
+
283
+ - csv2inspec impact doesn't correct format "CAT I II III" severities [\#88](https://github.com/mitre/inspec_tools/issues/88)
284
+
285
+ **Merged pull requests:**
286
+
287
+ - Support conversion from CAT/Category style severities when generating an impact number. [\#106](https://github.com/mitre/inspec_tools/pull/106) ([Bialogs](https://github.com/Bialogs))
288
+
289
+ ## [v1.7.3](https://github.com/mitre/inspec_tools/tree/v1.7.3) (2020-03-23)
290
+
291
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.2...v1.7.3)
292
+
293
+ **Merged pull requests:**
294
+
295
+ - Hotfix [\#104](https://github.com/mitre/inspec_tools/pull/104) ([Bialogs](https://github.com/Bialogs))
296
+
297
+ ## [v1.7.2](https://github.com/mitre/inspec_tools/tree/v1.7.2) (2020-03-23)
298
+
299
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.1...v1.7.2)
300
+
301
+ **Implemented enhancements:**
302
+
303
+ - add warning in CLI if needed app is missing for pdf2inspec [\#38](https://github.com/mitre/inspec_tools/issues/38)
304
+
305
+ **Merged pull requests:**
306
+
307
+ - Allow pushing to any gem host to support GitHub [\#103](https://github.com/mitre/inspec_tools/pull/103) ([Bialogs](https://github.com/Bialogs))
308
+
309
+ ## [v1.7.1](https://github.com/mitre/inspec_tools/tree/v1.7.1) (2020-03-23)
310
+
311
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.7.0...v1.7.1)
312
+
313
+ **Merged pull requests:**
314
+
315
+ - GitHub Action Workflow Updates [\#102](https://github.com/mitre/inspec_tools/pull/102) ([Bialogs](https://github.com/Bialogs))
316
+
317
+ ## [v1.7.0](https://github.com/mitre/inspec_tools/tree/v1.7.0) (2020-03-20)
318
+
319
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.21...v1.7.0)
320
+
321
+ **Implemented enhancements:**
322
+
323
+ - Migrate to depend on the new inspect objects library [\#86](https://github.com/mitre/inspec_tools/issues/86)
324
+
325
+ **Merged pull requests:**
326
+
327
+ - Remove warnings \(\#minor\) [\#101](https://github.com/mitre/inspec_tools/pull/101) ([Bialogs](https://github.com/Bialogs))
328
+
329
+ ## [v1.6.21](https://github.com/mitre/inspec_tools/tree/v1.6.21) (2020-03-20)
330
+
331
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.20...v1.6.21)
332
+
333
+ **Implemented enhancements:**
334
+
335
+ - Parse cis XSLX [\#90](https://github.com/mitre/inspec_tools/pull/90) ([lukemalinowski](https://github.com/lukemalinowski))
336
+
337
+ **Closed issues:**
338
+
339
+ - figure out rubygems.org [\#31](https://github.com/mitre/inspec_tools/issues/31)
340
+
341
+ ## [v1.6.20](https://github.com/mitre/inspec_tools/tree/v1.6.20) (2020-03-17)
342
+
343
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.19...v1.6.20)
344
+
345
+ ## [v1.6.19](https://github.com/mitre/inspec_tools/tree/v1.6.19) (2020-03-16)
346
+
347
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.18...v1.6.19)
348
+
349
+ **Merged pull requests:**
350
+
351
+ - Update github workflows [\#99](https://github.com/mitre/inspec_tools/pull/99) ([Bialogs](https://github.com/Bialogs))
352
+
353
+ ## [v1.6.18](https://github.com/mitre/inspec_tools/tree/v1.6.18) (2020-03-16)
354
+
355
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.17...v1.6.18)
356
+
357
+ ## [v1.6.17](https://github.com/mitre/inspec_tools/tree/v1.6.17) (2020-03-13)
358
+
359
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.16...v1.6.17)
360
+
361
+ **Fixed bugs:**
362
+
363
+ - Fix VERSION file update to update the right file in the gem [\#79](https://github.com/mitre/inspec_tools/issues/79)
364
+
365
+ ## [v1.6.16](https://github.com/mitre/inspec_tools/tree/v1.6.16) (2020-03-13)
366
+
367
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.15...v1.6.16)
368
+
369
+ **Fixed bugs:**
370
+
371
+ - The `changelog.md` versions seem to be broken [\#80](https://github.com/mitre/inspec_tools/issues/80)
372
+ - Update version.yml regex to match multidigit version numbers and use … [\#98](https://github.com/mitre/inspec_tools/pull/98) ([Bialogs](https://github.com/Bialogs))
373
+
374
+ ## [v1.6.15](https://github.com/mitre/inspec_tools/tree/v1.6.15) (2020-03-13)
375
+
376
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.14...v1.6.15)
377
+
378
+ **Merged pull requests:**
379
+
380
+ - Fix issue with CHANGELOD.md not generating because of invalid startin… [\#97](https://github.com/mitre/inspec_tools/pull/97) ([Bialogs](https://github.com/Bialogs))
381
+
382
+ ## [v1.6.14](https://github.com/mitre/inspec_tools/tree/v1.6.14) (2020-03-13)
383
+
384
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.13...v1.6.14)
385
+
386
+ **Closed issues:**
387
+
388
+ - add travis to the commit/PR workflow [\#36](https://github.com/mitre/inspec_tools/issues/36)
389
+
390
+ **Merged pull requests:**
391
+
392
+ - Use my personal version of github-actions-x/commit until git-lfs patc… [\#96](https://github.com/mitre/inspec_tools/pull/96) ([Bialogs](https://github.com/Bialogs))
393
+
394
+ ## [v1.6.13](https://github.com/mitre/inspec_tools/tree/v1.6.13) (2020-03-13)
395
+
396
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.12...v1.6.13)
397
+
398
+ **Closed issues:**
399
+
400
+ - use github\_changelog\_generator in our release process [\#33](https://github.com/mitre/inspec_tools/issues/33)
401
+ - add project instructions for Changelog, contribution and issue\_template [\#32](https://github.com/mitre/inspec_tools/issues/32)
402
+
403
+ **Merged pull requests:**
404
+
405
+ - Rubygems release workflow [\#100](https://github.com/mitre/inspec_tools/pull/100) ([Bialogs](https://github.com/Bialogs))
406
+ - Enable git-lfs for this repository; tracking xls and xlsx files. [\#94](https://github.com/mitre/inspec_tools/pull/94) ([Bialogs](https://github.com/Bialogs))
407
+
408
+ ## [v1.6.12](https://github.com/mitre/inspec_tools/tree/v1.6.12) (2020-03-13)
409
+
410
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.11...v1.6.12)
411
+
412
+ **Closed issues:**
413
+
414
+ - Typo in main README.md [\#89](https://github.com/mitre/inspec_tools/issues/89)
415
+
416
+ **Merged pull requests:**
417
+
418
+ - Fix typo in README.md, Remove development guidance in favor of a wiki… [\#93](https://github.com/mitre/inspec_tools/pull/93) ([Bialogs](https://github.com/Bialogs))
419
+
420
+ ## [v1.6.11](https://github.com/mitre/inspec_tools/tree/v1.6.11) (2020-03-12)
421
+
422
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.10...v1.6.11)
423
+
424
+ **Closed issues:**
425
+
426
+ - DISA STIG web address needs to be updated [\#66](https://github.com/mitre/inspec_tools/issues/66)
427
+
428
+ **Merged pull requests:**
429
+
430
+ - Ignore debug generated files [\#92](https://github.com/mitre/inspec_tools/pull/92) ([Bialogs](https://github.com/Bialogs))
431
+
432
+ ## [v1.6.10](https://github.com/mitre/inspec_tools/tree/v1.6.10) (2020-03-12)
433
+
434
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.9...v1.6.10)
435
+
436
+ **Fixed bugs:**
437
+
438
+ - Fix https://public.cyber.mil refernces [\#81](https://github.com/mitre/inspec_tools/pull/81) ([aaronlippold](https://github.com/aaronlippold))
439
+
440
+ ## [v1.6.9](https://github.com/mitre/inspec_tools/tree/v1.6.9) (2020-03-06)
441
+
442
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.8...v1.6.9)
443
+
444
+ ## [v1.6.8](https://github.com/mitre/inspec_tools/tree/v1.6.8) (2020-03-05)
445
+
446
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.7...v1.6.8)
447
+
448
+ ## [v1.6.7](https://github.com/mitre/inspec_tools/tree/v1.6.7) (2020-02-11)
449
+
450
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.6...v1.6.7)
451
+
452
+ ## [v1.6.6](https://github.com/mitre/inspec_tools/tree/v1.6.6) (2020-02-05)
453
+
454
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/53bdcb3...v1.6.6)
455
+
456
+ **Fixed bugs:**
457
+
458
+ - --help option is broken but inspec\_tools help \<command\> works [\#77](https://github.com/mitre/inspec_tools/issues/77)
459
+ - Fixes \#77 by shifting help commands around [\#87](https://github.com/mitre/inspec_tools/pull/87) ([lukemalinowski](https://github.com/lukemalinowski))
460
+
461
+ **Merged pull requests:**
462
+
463
+ - Apply fixes from CodeFactor [\#82](https://github.com/mitre/inspec_tools/pull/82) ([aaronlippold](https://github.com/aaronlippold))
464
+
465
+ ## [53bdcb3](https://github.com/mitre/inspec_tools/tree/53bdcb3) (2019-11-06)
466
+
467
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.4...53bdcb3)
468
+
469
+ **Fixed bugs:**
470
+
471
+ - --version and -v are broken [\#76](https://github.com/mitre/inspec_tools/issues/76)
472
+
473
+ **Closed issues:**
474
+
475
+ - Logic fix [\#83](https://github.com/mitre/inspec_tools/issues/83)
476
+
477
+ **Merged pull requests:**
478
+
479
+ - Fixes \#83 [\#85](https://github.com/mitre/inspec_tools/pull/85) ([aaronlippold](https://github.com/aaronlippold))
480
+ - Fixes \#76 by editing version number [\#84](https://github.com/mitre/inspec_tools/pull/84) ([lukemalinowski](https://github.com/lukemalinowski))
481
+
482
+ ## [v1.6.4](https://github.com/mitre/inspec_tools/tree/v1.6.4) (2019-11-05)
483
+
484
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.3...v1.6.4)
485
+
486
+ ## [v1.6.3](https://github.com/mitre/inspec_tools/tree/v1.6.3) (2019-11-05)
487
+
488
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.5...v1.6.3)
489
+
490
+ ## [v1.6.5](https://github.com/mitre/inspec_tools/tree/v1.6.5) (2019-11-05)
491
+
492
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.2...v1.6.5)
493
+
494
+ ## [v1.6.2](https://github.com/mitre/inspec_tools/tree/v1.6.2) (2019-11-05)
495
+
496
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.1...v1.6.2)
497
+
498
+ ## [v1.6.1](https://github.com/mitre/inspec_tools/tree/v1.6.1) (2019-11-05)
499
+
500
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.6.0...v1.6.1)
501
+
502
+ **Merged pull requests:**
503
+
504
+ - Update Profile logic include control exceptions [\#75](https://github.com/mitre/inspec_tools/pull/75) ([rx294](https://github.com/rx294))
505
+ - Null Byte in json report causes inspec2ckl to bomb-out [\#73](https://github.com/mitre/inspec_tools/pull/73) ([kevin-j-smith](https://github.com/kevin-j-smith))
506
+
507
+ ## [v1.6.0](https://github.com/mitre/inspec_tools/tree/v1.6.0) (2019-10-04)
508
+
509
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.5.0...v1.6.0)
510
+
511
+ **Closed issues:**
512
+
513
+ - Updated logic for results metrics [\#74](https://github.com/mitre/inspec_tools/issues/74)
514
+
515
+ ## [v1.5.0](https://github.com/mitre/inspec_tools/tree/v1.5.0) (2019-09-10)
516
+
517
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.2...v1.5.0)
518
+
519
+ **Closed issues:**
520
+
521
+ - Feature Enhancement: Inspec command plugin for inspec\_tools [\#67](https://github.com/mitre/inspec_tools/issues/67)
522
+
523
+ **Merged pull requests:**
524
+
525
+ - Kevin j smith adding inspec command plugin logic [\#72](https://github.com/mitre/inspec_tools/pull/72) ([lukemalinowski](https://github.com/lukemalinowski))
526
+ - Added logic so that inspec\_tools can be a plugin to Inspec as a comma… [\#68](https://github.com/mitre/inspec_tools/pull/68) ([kevin-j-smith](https://github.com/kevin-j-smith))
527
+
528
+ ## [v1.4.2](https://github.com/mitre/inspec_tools/tree/v1.4.2) (2019-07-30)
529
+
530
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.1...v1.4.2)
531
+
532
+ **Closed issues:**
533
+
534
+ - Add additional option for Summary command [\#64](https://github.com/mitre/inspec_tools/issues/64)
535
+ - `insert\_json\_metadata': undefined method `version' for nil:NilClass [\#63](https://github.com/mitre/inspec_tools/issues/63)
536
+
537
+ **Merged pull requests:**
538
+
539
+ - Updated rake version [\#69](https://github.com/mitre/inspec_tools/pull/69) ([robthew](https://github.com/robthew))
540
+ - Add in 'inspec' and 'fileutils' require statements [\#65](https://github.com/mitre/inspec_tools/pull/65) ([samcornwell](https://github.com/samcornwell))
541
+
542
+ ## [v1.4.1](https://github.com/mitre/inspec_tools/tree/v1.4.1) (2019-06-20)
543
+
544
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.4.0...v1.4.1)
545
+
546
+ ## [v1.4.0](https://github.com/mitre/inspec_tools/tree/v1.4.0) (2019-05-17)
547
+
548
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.6...v1.4.0)
549
+
550
+ **Merged pull requests:**
551
+
552
+ - Apply fixes from CodeFactor [\#61](https://github.com/mitre/inspec_tools/pull/61) ([aaronlippold](https://github.com/aaronlippold))
553
+
554
+ ## [v1.3.6](https://github.com/mitre/inspec_tools/tree/v1.3.6) (2019-05-02)
555
+
556
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.5...v1.3.6)
557
+
558
+ **Implemented enhancements:**
559
+
560
+ - document new metadata.json file and creation of file in README.md [\#53](https://github.com/mitre/inspec_tools/issues/53)
561
+ - remove 'severity' from conversion [\#57](https://github.com/mitre/inspec_tools/pull/57) ([aaronlippold](https://github.com/aaronlippold))
562
+
563
+ **Closed issues:**
564
+
565
+ - While working with STIGViewer there were some missing TAGs [\#50](https://github.com/mitre/inspec_tools/issues/50)
566
+ - remove severity tag in xccdf to inspec converted [\#44](https://github.com/mitre/inspec_tools/issues/44)
567
+
568
+ ## [v1.3.5](https://github.com/mitre/inspec_tools/tree/v1.3.5) (2019-05-01)
569
+
570
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.3.4...v1.3.5)
571
+
572
+ ## [v1.3.4](https://github.com/mitre/inspec_tools/tree/v1.3.4) (2019-05-01)
573
+
574
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.6...v1.3.4)
575
+
576
+ **Closed issues:**
577
+
578
+ - Needed app is missing [\#49](https://github.com/mitre/inspec_tools/issues/49)
579
+ - 2018 b79e5c3 [\#48](https://github.com/mitre/inspec_tools/issues/48)
580
+
581
+ **Merged pull requests:**
582
+
583
+ - Metadata docs and tools [\#55](https://github.com/mitre/inspec_tools/pull/55) ([samcornwell](https://github.com/samcornwell))
584
+ - Fix bugs introduced by \#51 \(STIGViewer PR\) [\#52](https://github.com/mitre/inspec_tools/pull/52) ([samcornwell](https://github.com/samcornwell))
585
+ - Enhancements to meet working with STIGViewer as well as tracking some custom metadata when converting from xccdf2inspec and inspec2ckl [\#51](https://github.com/mitre/inspec_tools/pull/51) ([kevin-j-smith](https://github.com/kevin-j-smith))
586
+ - Add modules summary, compliance [\#45](https://github.com/mitre/inspec_tools/pull/45) ([rx294](https://github.com/rx294))
587
+
588
+ ## [v1.1.6](https://github.com/mitre/inspec_tools/tree/v1.1.6) (2018-12-13)
589
+
590
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.5...v1.1.6)
591
+
592
+ ## [v1.1.5](https://github.com/mitre/inspec_tools/tree/v1.1.5) (2018-12-11)
593
+
594
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.2...v1.1.5)
595
+
596
+ **Implemented enhancements:**
597
+
598
+ - Add help for the gem usage and or ruby usage [\#7](https://github.com/mitre/inspec_tools/issues/7)
599
+ - add sub-help command output to match README and document each function [\#6](https://github.com/mitre/inspec_tools/issues/6)
600
+
601
+ **Closed issues:**
602
+
603
+ - add rubocop integration or PRs [\#34](https://github.com/mitre/inspec_tools/issues/34)
604
+ - Do we want to expose the --cci flag in the example as it is now not needed by default given it is in the /data directory [\#29](https://github.com/mitre/inspec_tools/issues/29)
605
+ - fix the subcommands help so it works as expected [\#28](https://github.com/mitre/inspec_tools/issues/28)
606
+ - THOR CLI: xccdf2inspec for example was giving me a hard time about the order of -x or --xccdf or --cci or -c and the order they were in - the docs on it seems to give two sets of directions [\#27](https://github.com/mitre/inspec_tools/issues/27)
607
+ - do we have to do anything special for including CIS Benchmarks? [\#21](https://github.com/mitre/inspec_tools/issues/21)
608
+ - clean up debug statements [\#20](https://github.com/mitre/inspec_tools/issues/20)
609
+ - Give attribution for files in /data [\#19](https://github.com/mitre/inspec_tools/issues/19)
610
+ - add copyright statements if necessary [\#15](https://github.com/mitre/inspec_tools/issues/15)
611
+ - check /examples/sample\_json to see if any of the results are sensitive [\#14](https://github.com/mitre/inspec_tools/issues/14)
612
+
613
+ **Merged pull requests:**
614
+
615
+ - replaced docsplit with pdf-reader [\#43](https://github.com/mitre/inspec_tools/pull/43) ([robthew](https://github.com/robthew))
616
+ - Updated remove dir statement [\#41](https://github.com/mitre/inspec_tools/pull/41) ([robthew](https://github.com/robthew))
617
+ - Added appveyor config [\#40](https://github.com/mitre/inspec_tools/pull/40) ([robthew](https://github.com/robthew))
618
+ - Travis test [\#39](https://github.com/mitre/inspec_tools/pull/39) ([robthew](https://github.com/robthew))
619
+ - Add rubocop to the process [\#35](https://github.com/mitre/inspec_tools/pull/35) ([aaronlippold](https://github.com/aaronlippold))
620
+ - \* added refernces to external data sources [\#30](https://github.com/mitre/inspec_tools/pull/30) ([aaronlippold](https://github.com/aaronlippold))
621
+
622
+ ## [v1.1.2](https://github.com/mitre/inspec_tools/tree/v1.1.2) (2018-11-08)
623
+
624
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.1...v1.1.2)
625
+
626
+ ## [v1.1.1](https://github.com/mitre/inspec_tools/tree/v1.1.1) (2018-11-08)
627
+
628
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/v1.1.0...v1.1.1)
629
+
630
+ ## [v1.1.0](https://github.com/mitre/inspec_tools/tree/v1.1.0) (2018-11-08)
631
+
632
+ [Full Changelog](https://github.com/mitre/inspec_tools/compare/85b69b32277ea43f95b09eee00e9f7b84c62dfff...v1.1.0)
633
+
634
+ **Fixed bugs:**
635
+
636
+ - Remove unneeded `exe` dir if we are going to standardize on `bin`and update the `.gemspec` file [\#25](https://github.com/mitre/inspec_tools/issues/25)
637
+
638
+ **Closed issues:**
639
+
640
+ - when you When build the gem and install it - the command `inspec\_tools` does not seem to install into the path [\#26](https://github.com/mitre/inspec_tools/issues/26)
641
+ - Add MITRE Copyright to the end of the README.md [\#23](https://github.com/mitre/inspec_tools/issues/23)
642
+ - Update email addresses to MITRE addresses [\#18](https://github.com/mitre/inspec_tools/issues/18)
643
+ - update readme.md [\#17](https://github.com/mitre/inspec_tools/issues/17)
644
+ - update inspec\_tools.gemspec [\#16](https://github.com/mitre/inspec_tools/issues/16)
645
+ - update license to apache 2.0 [\#13](https://github.com/mitre/inspec_tools/issues/13)
646
+ - Separate Files defaults to \[False\] [\#10](https://github.com/mitre/inspec_tools/issues/10)
647
+ - Rename repository to 'inspec\_tools' [\#9](https://github.com/mitre/inspec_tools/issues/9)
648
+
649
+ **Merged pull requests:**
650
+
651
+ - Cleanup Debug Statetements [\#12](https://github.com/mitre/inspec_tools/pull/12) ([yarick](https://github.com/yarick))
652
+ - Change default separated\_files setting to default to true [\#11](https://github.com/mitre/inspec_tools/pull/11) ([yarick](https://github.com/yarick))
653
+ - Cleanup [\#8](https://github.com/mitre/inspec_tools/pull/8) ([robthew](https://github.com/robthew))
654
+ - Unification [\#5](https://github.com/mitre/inspec_tools/pull/5) ([dromazmj](https://github.com/dromazmj))
655
+ - \* Adds functionality for inspec2csv [\#4](https://github.com/mitre/inspec_tools/pull/4) ([dromazmj](https://github.com/dromazmj))
656
+ - Md/pdf [\#3](https://github.com/mitre/inspec_tools/pull/3) ([dromazmj](https://github.com/dromazmj))
657
+ - Md/csv2inspec [\#2](https://github.com/mitre/inspec_tools/pull/2) ([dromazmj](https://github.com/dromazmj))
658
+ - Writes code in the inspec util to output an inspec json to a directory [\#1](https://github.com/mitre/inspec_tools/pull/1) ([dromazmj](https://github.com/dromazmj))
659
+
660
+
661
+
662
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*