feat(compliance): add CIS 6.0 for M365 (#9779)

This commit is contained in:
Pedro Martín
2026-01-13 10:07:12 +01:00
committed by GitHub
parent 9719f9ee86
commit 48274f1d54
3 changed files with 3112 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import warnings
from dashboard.common_methods import get_section_containers_cis
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_cis(
aux, "REQUIREMENTS_ID", "REQUIREMENTS_ATTRIBUTES_SECTION"
)