mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-03-21 18:58:04 +00:00
feat(compliance): add SecNumCloud 3.2 for Oracle Cloud (#10371)
This commit is contained in:
24
dashboard/compliance/secnumcloud_3_2_oraclecloud.py
Normal file
24
dashboard/compliance/secnumcloud_3_2_oraclecloud.py
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
import warnings
|
||||||
|
|
||||||
|
from dashboard.common_methods import get_section_containers_format3
|
||||||
|
|
||||||
|
warnings.filterwarnings("ignore")
|
||||||
|
|
||||||
|
|
||||||
|
def get_table(data):
|
||||||
|
aux = data[
|
||||||
|
[
|
||||||
|
"REQUIREMENTS_ID",
|
||||||
|
"REQUIREMENTS_DESCRIPTION",
|
||||||
|
"REQUIREMENTS_ATTRIBUTES_SECTION",
|
||||||
|
"CHECKID",
|
||||||
|
"STATUS",
|
||||||
|
"REGION",
|
||||||
|
"ACCOUNTID",
|
||||||
|
"RESOURCEID",
|
||||||
|
]
|
||||||
|
].copy()
|
||||||
|
|
||||||
|
return get_section_containers_format3(
|
||||||
|
aux, "REQUIREMENTS_ATTRIBUTES_SECTION", "REQUIREMENTS_ID"
|
||||||
|
)
|
||||||
@@ -80,6 +80,8 @@ def load_csv_files(csv_files):
|
|||||||
result = result.replace("_M65", " - M65")
|
result = result.replace("_M65", " - M65")
|
||||||
if "ALIBABACLOUD" in result:
|
if "ALIBABACLOUD" in result:
|
||||||
result = result.replace("_ALIBABACLOUD", " - ALIBABACLOUD")
|
result = result.replace("_ALIBABACLOUD", " - ALIBABACLOUD")
|
||||||
|
if "ORACLECLOUD" in result:
|
||||||
|
result = result.replace("_ORACLECLOUD", " - ORACLECLOUD")
|
||||||
results.append(result)
|
results.append(result)
|
||||||
|
|
||||||
unique_results = set(results)
|
unique_results = set(results)
|
||||||
|
|||||||
@@ -12,9 +12,10 @@ All notable changes to the **Prowler SDK** are documented in this file.
|
|||||||
-`entra_conditional_access_policy_require_mfa_for_admin_portals` check for Azure provider and update CIS compliance [(#10330)](https://github.com/prowler-cloud/prowler/pull/10330)
|
-`entra_conditional_access_policy_require_mfa_for_admin_portals` check for Azure provider and update CIS compliance [(#10330)](https://github.com/prowler-cloud/prowler/pull/10330)
|
||||||
- CheckMetadata Pydantic validators [(#8584)](https://github.com/prowler-cloud/prowler/pull/8583)
|
- CheckMetadata Pydantic validators [(#8584)](https://github.com/prowler-cloud/prowler/pull/8583)
|
||||||
- `organization_repository_deletion_limited` check for GitHub provider [(#10185)](https://github.com/prowler-cloud/prowler/pull/10185)
|
- `organization_repository_deletion_limited` check for GitHub provider [(#10185)](https://github.com/prowler-cloud/prowler/pull/10185)
|
||||||
- SecNumCloud 3.2 compliance framework for the GCP provider [(#10364)](https://github.com/prowler-cloud/prowler/pull/10364)
|
- SecNumCloud 3.2 for the GCP provider [(#10364)](https://github.com/prowler-cloud/prowler/pull/10364)
|
||||||
- SecNumCloud 3.2 for the Azure provider [(#10358)](https://github.com/prowler-cloud/prowler/pull/10358)
|
- SecNumCloud 3.2 for the Azure provider [(#10358)](https://github.com/prowler-cloud/prowler/pull/10358)
|
||||||
- SecNumCloud 3.2 for the Alibaba Cloud provider [(#10370)](https://github.com/prowler-cloud/prowler/pull/10370)
|
- SecNumCloud 3.2 for the Alibaba Cloud provider [(#10370)](https://github.com/prowler-cloud/prowler/pull/10370)
|
||||||
|
- SecNumCloud 3.2 for the Oracle Cloud provider [(#10371)](https://github.com/prowler-cloud/prowler/pull/10371)
|
||||||
|
|
||||||
### 🔄 Changed
|
### 🔄 Changed
|
||||||
|
|
||||||
|
|||||||
1433
prowler/compliance/oraclecloud/secnumcloud_3.2_oraclecloud.json
Normal file
1433
prowler/compliance/oraclecloud/secnumcloud_3.2_oraclecloud.json
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user