The Compliance Checking script checks a tenancy's configuration against the CIS OCI Foundations Benchmark. In addition to CIS checks it can be check for alignment to OCI Best Practices by using the --obp
flag. These checks review the following OCI best practices in your tenancy:
- Aggregation of OCI Audit compartment logs, Network Flow logs, and Object Storage logs are sent to Service Connector Hub in all regions
- A Budget for cost track is created in your tenancy
- Network connectivity to on-premises is redundant
- Cloud Guard is configured at the root compartment with detectors and responders
The script is located under the scripts folder in this repository. It outputs a summary report CSV as well individual CSV findings report for configuration issues that are discovered in a folder(default location) with the region, tenancy name, and current day's date ex. <tenancy_name>-2022-12-02_13-50-30/
.
The Auditors Group that is created as part of the CIS Landing Zone Terraform has all the permissions required to run the compliance checking in the tenancy. Below is the minimum OCI IAM Policy to grant a group the script in a tenancy.
*Access to audit retention requires the user to be part of the Administrator group - the only recommendation affected is CIS recommendation 3.1.
allow group Auditor-Group to inspect all-resources in tenancy
allow group Auditor-Group to read instances in tenancy
allow group Auditor-Group to read load-balancers in tenancy
allow group Auditor-Group to read buckets in tenancy
allow group Auditor-Group to read nat-gateways in tenancy
allow group Auditor-Group to read public-ips in tenancy
allow group Auditor-Group to read file-family in tenancy
allow group Auditor-Group to read instance-configurations in tenancy
allow group Auditor-Group to read network-security-groups in tenancy
allow group Auditor-Group to read resource-availability in tenancy
allow group Auditor-Group to read audit-events in tenancy
allow group Auditor-Group to read users in tenancy
allow group Auditor-Group to use cloud-shell in tenancy
allow group Auditor-Group to read vss-family in tenancy
allow group Auditor-Group to read usage-budgets in tenancy
allow group Auditor-Group to read usage-reports in tenancy
allow group Auditor-Group to read data-safe-family in tenancy
allow group Auditor-Group to read vaults in tenancy
allow group Auditor-Group to read keys in tenancy
allow group Auditor-Group to read tag-namespaces in tenancy
allow group Auditor-Group to use ons-family in tenancy where any {request.operation!=/Create*/, request.operation!=/Update*/, request.operation!=/Delete*/, request.operation!=/Change*/}
- Setup and Prerequisites
- Ensure your OCI
config
file is in the~/.oci/
directory - Download cis_reports.py: https://raw.githubusercontent.com/oci-landing-zones/oci-cis-landingzone-quickstart/main/scripts/cis_reports.py
wget https://raw.githubusercontent.com/oci-landing-zones/oci-cis-landingzone-quickstart/main/scripts/cis_reports.py
- Create a Python Virtual Environment with required modules
python3 -m venv python-venv
source python-venv/bin/activate
pip3 install oci
pip3 install pytz
pip3 install requests
- Libraries for Dashboard Graphics (optional)
pip3 install numpy
pip3 install matplotlib
- Libraries for XLSX Output (optional)
pip3 install xlsxwriter
- Download cis_reports.py: https://raw.githubusercontent.com/oci-landing-zones/oci-cis-landingzone-quickstart/main/scripts/cis_reports.py
wget https://raw.githubusercontent.com/oci-landing-zones/oci-cis-landingzone-quickstart/main/scripts/cis_reports.py
- Download cis_reports.py: https://raw.githubusercontent.com/oci-landing-zones/oci-cis-landingzone-quickstart/main/scripts/cis_reports.py
wget https://raw.githubusercontent.com/oci-landing-zones/oci-cis-landingzone-quickstart/main/scripts/cis_reports.py
- Create a Python Virtual Environment with required modules
python3 -m venv python-venv
source python-venv/bin/activate
pip3 install oci
pip3 install pytz
pip3 install requests
- Libraries for Dashboard Graphics (optional)
pip3 install numpy
pip3 install matplotlib
- Libraries for XLSX Output (optional)
pip3 install xlsxwriter
The script loops through all regions used by the tenancy and all resource types referenced in the CIS OCI Foundations Benchmark and outputs a summary compliance report. Each report row corresponds to a recommendation in the OCI Foundations Benchmark and identifies if the tenancy is in compliance as well as the number of offending findings. The report summary columns read as:
- Num: the recommendation number in the CIS Benchmark document.
- Level: the recommendation level. Level 1 recommendations are less restrictive than Level 2.
- Compliant: whether the tenancy is in compliance with the recommendation.
- Findings: the number of offending findings for the recommendation.
- Title: the recommendation description.
In the sample output below, we see the tenancy is not compliant with several recommendations. Among those is item 1.7 where the output shows 33 users do not have MFA enabled for accessing OCI Console.
##########################################################################################
# CIS Foundations Benchmark 2.0.0 Summary Report #
##########################################################################################
Num Level Compliant Findings Total Title
##########################################################################################
1.1 1 No 2 49 Ensure service level admins are created to manage resources of particular service
1.2 1 Yes 49 Ensure permissions on all resources are given only to the tenancy administrator group
1.3 1 Yes 49 Ensure IAM administrators cannot update tenancy Administrators group
1.4 1 Yes Ensure IAM password policy requires minimum length of 14 or greater
1.5 1 Yes 3 Ensure IAM password policy expires passwords within 365 days
1.6 1 No 1 3 Ensure IAM password policy prevents password reuse
1.7 1 No 9 18 Ensure MFA is enabled for all users with a console password
1.8 1 No 1 5 Ensure user API keys rotate within 90 days or less
1.9 1 Yes 2 Ensure user customer secret keys rotate within 90 days or less
1.10 1 No 1 3 Ensure user auth tokens rotate within 90 days or less
1.11 1 Yes Ensure user IAM Database Passwords rotate within 90 days
1.12 1 No 2 3 Ensure API keys are not created for tenancy administrator users
1.13 1 No 5 18 Ensure all OCI IAM user accounts have a valid and current email address
1.14 1 Yes 9 Ensure Instance Principal authentication is used for OCI instances, OCI Cloud Databases and OCI Functions to access OCI resources.
1.15 2 No 3 49 Ensure storage service-level admins cannot delete resources they manage
2.1 1 No 3 15 Ensure no security lists allow ingress from 0.0.0.0/0 to port 22.
2.2 1 Yes 15 Ensure no security lists allow ingress from 0.0.0.0/0 to port 3389.
2.3 1 No 1 11 Ensure no network security groups allow ingress from 0.0.0.0/0 to port 22.
2.4 1 Yes 11 Ensure no network security groups allow ingress from 0.0.0.0/0 to port 3389.
2.5 1 No 3 7 Ensure the default security list of every VCN restricts all traffic except ICMP.
2.6 1 Yes 1 Ensure Oracle Integration Cloud (OIC) access is restricted to allowed sources.
2.7 1 Yes 1 Ensure Oracle Analytics Cloud (OAC) access is restricted to allowed sources or deployed within a Virtual Cloud Network.
2.8 1 Yes Ensure Oracle Autonomous Shared Database (ADB) access is restricted or deployed within a VCN.
3.1 1 Yes Ensure Compute Instance Legacy Metadata service endpoint is disabled.
3.2 2 Yes Ensure Secure Boot is enabled on Compute Instance.
3.3 2 Yes Ensure Compute Instance Legacy MetaData service endpoint is disabled.
4.1 1 Yes 2 Ensure default tags are used on resources.
4.2 1 Yes 5 Create at least one notification topic and subscription to receive monitoring alerts.
4.3 1 No Ensure a notification is configured for Identity Provider changes.
4.4 1 Yes Ensure a notification is configured for IdP group mapping changes.
4.5 1 Yes Ensure a notification is configured for IAM group changes.
4.6 1 Yes Ensure a notification is configured for IAM policy changes.
4.7 1 Yes Ensure a notification is configured for user changes.
4.8 1 Yes Ensure a notification is configured for VCN changes.
4.9 1 Yes Ensure a notification is configured for changes to route tables.
4.10 1 Yes Ensure a notification is configured for security list changes.
4.11 1 Yes Ensure a notification is configured for network security group changes.
4.12 1 Yes Ensure a notification is configured for changes to network gateways.
4.13 2 No 2 11 Ensure VCN flow logging is enabled for all subnets.
4.14 1 Yes Ensure Cloud Guard is enabled in the root compartment of the tenancy.
4.15 2 Yes Ensure a notification is configured for Oracle Cloud Guard problems detected.
4.16 1 Yes 1 Ensure customer created Customer Managed Key (CMK) is rotated at least annually.
4.17 2 No 3 3 Ensure write level Object Storage logging is enabled for all buckets.
5.1.1 1 Yes 3 Ensure no Object Storage buckets are publicly visible.
5.1.2 2 No 3 3 Ensure Object Storage Buckets are encrypted with a Customer Managed Key (CMK).
5.1.3 2 No 3 3 Ensure Versioning is Enabled for Object Storage Buckets.
5.2.1 2 Yes Ensure Block Volumes are encrypted with Customer Managed Keys.
5.2.2 2 Yes Ensure Boot Volumes are encrypted with Customer Managed Key.
5.3.1 2 Yes Ensure File Storage Systems are encrypted with Customer Managed Keys.
6.1 1 Yes 70 Create at least one compartment in your tenancy to store cloud resources.
6.2 1 No 3 65 Ensure no resources are created in the root compartment.
For each non-compliant report item, a file with findings details is generated, as shown in the last part of the output:
##########################################################################################
# Writing CIS reports to CSV #
##########################################################################################
CSV: summary_report --> tenancy2-2024-02-23_15-12-00/cis_summary_report.csv
HTML: html_summary_report --> tenancy2-2024-02-23_15-12-00/cis_html_summary_report.html
CSV: Identity and Access Management_1.1 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-1.csv
CSV: Identity and Access Management_1.6 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-6.csv
CSV: Identity and Access Management_1.7 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-7.csv
CSV: Identity and Access Management_1.8 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-8.csv
CSV: Identity and Access Management_1.10 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-10.csv
CSV: Identity and Access Management_1.12 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-12.csv
CSV: Identity and Access Management_1.13 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-13.csv
CSV: Identity and Access Management_1.15 --> tenancy2-2024-02-23_15-12-00/cis_Identity_and_Access_Management_1-15.csv
CSV: Networking_2.1 --> tenancy2-2024-02-23_15-12-00/cis_Networking_2-1.csv
CSV: Networking_2.3 --> tenancy2-2024-02-23_15-12-00/cis_Networking_2-3.csv
CSV: Networking_2.5 --> tenancy2-2024-02-23_15-12-00/cis_Networking_2-5.csv
CSV: Logging and Monitoring_4.13 --> tenancy2-2024-02-23_15-12-00/cis_Logging_and_Monitoring_4-13.csv
CSV: Logging and Monitoring_4.17 --> tenancy2-2024-02-23_15-12-00/cis_Logging_and_Monitoring_4-17.csv
CSV: Storage - Object Storage_5.1.2 --> tenancy2-2024-02-23_15-12-00/cis_Storage_Object_Storage_5-1-2.csv
CSV: Storage - Object Storage_5.1.3 --> tenancy2-2024-02-23_15-12-00/cis_Storage_Object_Storage_5-1-3.csv
CSV: Asset Management_6.2 --> tenancy2-2024-02-23_15-12-00/cis_Asset_Management_6-2.csv
Back to our example, by looking at cis_Identity and Access Management_1.7.csv file, the output shows the 33 users who do not have MFA enabled for accessing OCI Console. The script only identifies compliance gaps. It does not remediate the findings. Administrator action is required to address this compliance gap.
Using --print-to-screen False
will only print non-compliant findings to the screen.
In the sample output below:
##########################################################################################
# CIS Foundations Benchmark 2.0.0 Summary Report #
##########################################################################################
Num Level Compliant Findings Total Title
##########################################################################################
1.1 1 No 2 49 Ensure service level admins are created to manage resources of particular service
1.6 1 No 1 3 Ensure IAM password policy prevents password reuse
1.7 1 No 9 18 Ensure MFA is enabled for all users with a console password
1.8 1 No 1 5 Ensure user API keys rotate within 90 days or less
1.10 1 No 1 3 Ensure user auth tokens rotate within 90 days or less
1.12 1 No 2 3 Ensure API keys are not created for tenancy administrator users
1.13 1 No 5 18 Ensure all OCI IAM user accounts have a valid and current email address
1.15 2 No 3 49 Ensure storage service-level admins cannot delete resources they manage
2.1 1 No 3 15 Ensure no security lists allow ingress from 0.0.0.0/0 to port 22.
2.3 1 No 1 11 Ensure no network security groups allow ingress from 0.0.0.0/0 to port 22.
2.5 1 No 3 7 Ensure the default security list of every VCN restricts all traffic except ICMP.
4.3 1 No Ensure a notification is configured for Identity Provider changes.
4.13 2 No 2 11 Ensure VCN flow logging is enabled for all subnets.
4.17 2 No 3 3 Ensure write level Object Storage logging is enabled for all buckets.
5.1.2 2 No 3 3 Ensure Object Storage Buckets are encrypted with a Customer Managed Key (CMK).
5.1.3 2 No 3 3 Ensure Versioning is Enabled for Object Storage Buckets.
6.2 1 No 3 65 Ensure no resources are created in the root compartment.
Using --level 1
will only print Level 1 findings.
In the sample output below:
##########################################################################################
# CIS Foundations Benchmark 2.0.0 Summary Report #
##########################################################################################
Num Level Compliant Findings Total Title
##########################################################################################
1.1 1 No 2 49 Ensure service level admins are created to manage resources of particular service
1.2 1 Yes 49 Ensure permissions on all resources are given only to the tenancy administrator group
1.3 1 Yes 49 Ensure IAM administrators cannot update tenancy Administrators group
1.4 1 Yes Ensure IAM password policy requires minimum length of 14 or greater
1.5 1 Yes 3 Ensure IAM password policy expires passwords within 365 days
1.6 1 No 1 3 Ensure IAM password policy prevents password reuse
1.7 1 No 9 18 Ensure MFA is enabled for all users with a console password
1.8 1 No 1 5 Ensure user API keys rotate within 90 days or less
1.9 1 Yes 2 Ensure user customer secret keys rotate within 90 days or less
1.10 1 No 1 3 Ensure user auth tokens rotate within 90 days or less
1.11 1 Yes Ensure user IAM Database Passwords rotate within 90 days
1.12 1 No 2 3 Ensure API keys are not created for tenancy administrator users
1.13 1 No 5 18 Ensure all OCI IAM user accounts have a valid and current email address
1.14 1 Yes 9 Ensure Instance Principal authentication is used for OCI instances, OCI Cloud Databases and OCI Functions to access OCI resources.
2.1 1 No 3 15 Ensure no security lists allow ingress from 0.0.0.0/0 to port 22.
2.2 1 Yes 15 Ensure no security lists allow ingress from 0.0.0.0/0 to port 3389.
2.3 1 No 1 11 Ensure no network security groups allow ingress from 0.0.0.0/0 to port 22.
2.4 1 Yes 11 Ensure no network security groups allow ingress from 0.0.0.0/0 to port 3389.
2.5 1 No 3 7 Ensure the default security list of every VCN restricts all traffic except ICMP.
2.6 1 Yes 1 Ensure Oracle Integration Cloud (OIC) access is restricted to allowed sources.
2.7 1 Yes 1 Ensure Oracle Analytics Cloud (OAC) access is restricted to allowed sources or deployed within a Virtual Cloud Network.
2.8 1 Yes Ensure Oracle Autonomous Shared Database (ADB) access is restricted or deployed within a VCN.
3.1 1 Yes Ensure Compute Instance Legacy Metadata service endpoint is disabled.
4.1 1 Yes 2 Ensure default tags are used on resources.
4.2 1 Yes 5 Create at least one notification topic and subscription to receive monitoring alerts.
4.3 1 No Ensure a notification is configured for Identity Provider changes.
4.4 1 Yes Ensure a notification is configured for IdP group mapping changes.
4.5 1 Yes Ensure a notification is configured for IAM group changes.
4.6 1 Yes Ensure a notification is configured for IAM policy changes.
4.7 1 Yes Ensure a notification is configured for user changes.
4.8 1 Yes Ensure a notification is configured for VCN changes.
4.9 1 Yes Ensure a notification is configured for changes to route tables.
4.10 1 Yes Ensure a notification is configured for security list changes.
4.11 1 Yes Ensure a notification is configured for network security group changes.
4.12 1 Yes Ensure a notification is configured for changes to network gateways.
4.14 1 Yes Ensure Cloud Guard is enabled in the root compartment of the tenancy.
4.16 1 Yes 1 Ensure customer created Customer Managed Key (CMK) is rotated at least annually.
5.1.1 1 Yes 3 Ensure no Object Storage buckets are publicly visible.
6.1 1 Yes 70 Create at least one compartment in your tenancy to store cloud resources.
6.2 1 No 3 65 Ensure no resources are created in the root compartment.
Using --obp
will check for a tenancy's alignment to the available OCI Best Practices.
##########################################################################################
# OCI Best Practices Findings #
##########################################################################################
Category Compliant Findings Best Practices
##########################################################################################
Cost_Tracking_Budgets True 40 1
SIEM_Audit_Log_All_Comps True 0 1
SIEM_Audit_Incl_Sub_Comp True 0 1
SIEM_VCN_Flow_Logging False 196 0
SIEM_Write_Bucket_Logs False 45 0
SIEM_Read_Bucket_Logs False 45 0
Networking_Connectivity False 17 0
Cloud_Guard_Config False 1 0
Certificates_Near_Expiry False 12 5
% python3 cis_reports.py -h
usage: cis_reports.py [-h] [-c FILE_LOCATION] [-t CONFIG_PROFILE] [-p PROXY] [--output-to-bucket OUTPUT_BUCKET] [--report-directory REPORT_DIRECTORY]
[--report-prefix REPORT_PREFIX] [--report-summary-json] [--print-to-screen PRINT_TO_SCREEN] [--level LEVEL] [--regions REGIONS] [--raw] [--obp]
[--all-resources] [--redact_output] [--deeplink-url-override OCI_URL] [-ip] [-dt] [-st] [-v] [--debug]
options:
-h, --help show this help message and exit
-c FILE_LOCATION OCI config file location.
-t CONFIG_PROFILE Config file section to use (tenancy profile).
-p PROXY Set Proxy (i.e. www-proxy-server.com:80).
--output-to-bucket OUTPUT_BUCKET Set Output bucket name (i.e. my-reporting-bucket).
--report-directory REPORT_DIRECTORY Set Output report directory by default it is the current date (i.e. reports-date).
--report-prefix REPORT_PREFIX Set Output report prefix to allow unique files for better baseline comparison.
--report-summary-json Write summary report as JSON file, too.
--print-to-screen PRINT_TO_SCREEN Set to False if you want to see only non-compliant findings (i.e. False).
--level LEVEL CIS Recommendation Level options are: 1 or 2. Set to 2 by default.
--regions REGIONS Regions to run the compliance checks on, by default it will run in all regions. Sample input: us-ashburn-1,ca-toronto-1,eu-frankfurt-1.
--raw Outputs all resource data into CSV files.
--obp Checks for OCI best practices.
--all-resources Uses Advanced Search Service to query all resources in the tenancy and outputs to a JSON. This also enables OCI Best Practice Checks (--obp)
and All resource to csv (--raw) flags.
--redact_output Redacts OCIDs in output CSV and JSON files.
--deeplink-url-override OCI_URL Replaces the base OCI URL (https://cloud.oracle.com) for deeplinks (i.e. https://oc10.cloud.oracle.com).
-ip Use Instance Principals for Authentication.
-dt Use Delegation Token for Authentication in Cloud Shell.
-st Authenticate using Security Token.
-v Show the version of the script and exit.
--debug Enables debugging messages. This feature is in beta.
%
To run using Cloud Shell in all regions and check for OCI Best Practices with raw data of all resources output to CSV files and network topology.
% python3 cis_reports.py -dt --obp --raw
Executing in Cloud Shell to check CIS, OCI Best Practices with raw data, and get all resource via the Advanced Search Query service
To run using Cloud Shell in all regions and check for OCI Best Practices with raw data, network topology and get all resource via the Advanced Search Query service
% python3 cis_reports.py -dt --all-resources
To run on a local machine using a specific OCI Config file.
% python3 cis_reports.py -c <file_location>
where <file_location>
is the fully qualified path to an OCI client config file (default location is ~/.oci/config
). An OCI config file contains profiles that define the connecting parameters to your tenancy, like tenancy id, region, user id, fingerprint and key file. For more information: https://docs.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File.
[<Profile_Name>]
tenancy=<tenancy_ocid>
region=us-ashburn-1
user=<user_ocid>
fingerprint=<api_key_finger_print>
key_file=/path_to_my_private_key_file.pem
To run on a local machine using a specific profile in the an OCI Config file.
% python3 cis_reports.py -t <Profile_Name>
where <Profile_Name>
is the profile name in OCI client config file (typically located under $HOME/.oci). A profile defines the connecting parameters to your tenancy, like tenancy id, region, user id, fingerprint and key file.
[<Profile_Name>]
tenancy=<tenancy_ocid>
region=us-ashburn-1
user=<user_ocid>
fingerprint=<api_key_finger_print>
key_file=/path_to_my_private_key_file.pem
To run on a local machine using a Security Token without OCI Config file. For more information: https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/clitoken.htm Execute the oci command.
% oci session authenticate
This command will prompt for Region details, provide region name ex: us-ashburn-1. Browser will open the OCI console window and asks for user credentials. Once after providing the credentials get back to the command prompt. This will create config file using the provided credentials in the "/Users/***/.oci/sessions/config. Execute the python script.
% python3 cis_reports.py -st
To run in Cloud Shell with delegated token authentication.
% python3 cis_reports.py -dt'
To run in Cloud Shell with delegated token authentication.
% python3 cis_reports.py --deeplink-url-override https://oc10.cloud.oracle.com'
To run on an OCI instance that associated with Instance Principal.
% python3 cis_reports.py -ip'
To run on using Cloud Shell in on us-ashburn-1 and us-phoenix-1. IAM checks will performed in the tenancy's Home Region.
% python3 cis_reports.py -dt --region us-ashburn-1,us-phoenix-1'
To write the output files to an Object Storage bucket.
% python3 cis_reports.py --output-to-bucket 'my-example-bucket-1'
Using --output-to-bucket <bucket-name>
the reports will be copied to the Object Storage bucket in a folder(default location) with the region, tenancy name, and current day's date ex. us-ashburn-1-<tenancy_name>-2020-12-08
. The bucket must already exist and the user executing the script must have permissions to use the bucket. If using the --report-directory flag as well the folder must already exist in the bucket.
To write the output files to an specified directory.
% python3 cis_reports.py --report-directory 'my-directory'
Using --report-directory <directory-name>
the reports will be copied to the specified directory. The directory must already exist.
To write the output files to an specified directory in an object storage bucket.
% python3 cis_reports.py --report-directory 'bucket-directory' --output-to-bucket 'my-example-bucket-1'
Using --report-directory <directory-name>
and --output-to-bucket <bucket-name>
together the reports will be copied to the specified directory in the specified bucket. The bucket must already exist in the Tenancy's Home Region and user must have permissions to write to that bucket.
To write the output files to an specified directory in an object storage bucket.
% python3 cis_reports.py --report-directory 'bucket-directory' --output-to-bucket 'my-example-bucket-1'
Using --report-directory <directory-name>
and --output-to-bucket <bucket-name>
together the reports will be copied to the specified directory in the specified bucket. The bucket must already exist in the Tenancy's Home Region and user must have permissions to write to that bucket.
To run on a local machine with the default profile and output raw data as well as the reports.
% python3 cis_reports.py --raw
- Why did the script may fail to run when executing from the local machine with message "** OCI_CONFIG_FILE and OCI_CONFIG_PROFILE env variables not found, abort. ***"?
- In this case, make sure to set OCI_CONFIG_HOME to the full path of .oci/config file. Optionally, OCI_CONFIG_PROFILE can be configured with a default profile to use from config.
- Optionally, you can use the
-c
option to specify an alternate config file
ImportError: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'OpenSSL 1.0.2k-fips 26 Jan 2017'.
- Change your urllib3 with the following
pip install --upgrade 'urllib3<=2' --user
- Change your urllib3 with the following
- Understanding CIS recommendation 1.15 Ensure storage service-level admins cannot delete resources they manage. logic from an example:
-
Why is this example being flagged as non-compliant
Allow group SYSADMINS_PROD to manage volume-family in compartment PROD where request.permission!='VOLUME_DELETE' Allow group SYSADMINS_PROD to manage object-family in compartment PROD where request.permission!='OBJECT_DELETE'
In the first example:
Allow group SYSADMINS_PROD to manage volume-family in compartment PROD where request.permission!='VOLUME_DELETE'
The SYSADMIN_PROD group has access to volume-family which includes volumes, volumes-backups, and boot-volumes-backups. Meaning while they would not be able to delete volumes they could delete resources of type: volumes-backups, and boot-volumes-backups which is something we are trying to prevent.
In the second example:
Allow group SYSADMINS_PROD to manage object-family in compartment PROD where request.permission!='OBJECT_DELETE'
The SYSADMIN_PROD group has access to object-family which includes buckets and objects. This means they would be able to delete a bucket violating the intent of the rule. Even though you can't delete a bucket with objects in it if you don't have permissions to the underlying objects you could delete an empty you created thus violating the intent.
- Why are there no dashboard graphics in the HTML page?
- Creating dashboard graphics is optional and requires the presence of the Python library
matplotlib
. To get the dashboard graphics, install the library.
- Creating dashboard graphics is optional and requires the presence of the Python library
- Why is the XLSX file not created?
- Writing an XLSX file is optional and requires the presence of Python library
xslxwriter
. To get an XLSX ooutput file, install the library.
- Writing an XLSX file is optional and requires the presence of Python library
- XLSX write will fail when cell values are too big
- This is a known limitation of Excel and will only happen if the xlsxwriter library has been installed. The XLSX writing routine will be executed after the tenancy has been checked and all findings are written to CSV files. This issue does not impact the overall verification result of script.
- Diagrams are not part of the HTML page.
- This may be because of broken
numpy
installation. The following command should resolve this:pip3 install --upgrade --force-reinstall --user numpy
- This may be because of broken