-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
This script prepares the file to be parsed by the converter: | ||
|
||
- copy the downloaded excel sheet from CIS next to this script (for instance CIS_Controls_Version_8.xlsx) | ||
- run the preparation script by passing the filename as 1st argument and your name/entity as a second one for the packager | ||
- run the converter on the prepared excel sheet | ||
- use the resulting yaml in CISO Assistant |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
file="CIS_Controls_Version_8.xlsx" | ||
packager="personal" | ||
python cis/prep_cis.py $file $packager | ||
intermediate="cis-controls-v8.xlsx" | ||
python convert_library.py cis/cis-controls-v8.xlsx | ||
echo "Resulting file is available at cis/cis-controls-v8.yaml" |