prowler-cloud 5.14.2__py3-none-any.whl → 5.15.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (327) hide show
  1. dashboard/assets/images/providers/alibabacloud_provider.png +0 -0
  2. dashboard/compliance/cis_2_0_alibabacloud.py +24 -0
  3. dashboard/lib/layouts.py +1 -0
  4. dashboard/pages/compliance.py +8 -2
  5. dashboard/pages/overview.py +52 -1
  6. prowler/CHANGELOG.md +59 -21
  7. prowler/__main__.py +34 -0
  8. prowler/compliance/alibabacloud/__init__.py +0 -0
  9. prowler/compliance/alibabacloud/cis_2.0_alibabacloud.json +1833 -0
  10. prowler/compliance/aws/iso27001_2013_aws.json +158 -158
  11. prowler/compliance/aws/soc2_aws.json +100 -0
  12. prowler/compliance/azure/rbi_cyber_security_framework_azure.json +248 -0
  13. prowler/compliance/azure/soc2_azure.json +87 -1
  14. prowler/compliance/gcp/soc2_gcp.json +82 -1
  15. prowler/config/config.py +2 -1
  16. prowler/lib/check/check.py +4 -0
  17. prowler/lib/check/models.py +23 -0
  18. prowler/lib/check/utils.py +1 -1
  19. prowler/lib/cli/parser.py +3 -2
  20. prowler/lib/outputs/compliance/cis/cis_alibabacloud.py +106 -0
  21. prowler/lib/outputs/compliance/cis/models.py +35 -0
  22. prowler/lib/outputs/finding.py +16 -0
  23. prowler/lib/outputs/html/html.py +67 -0
  24. prowler/lib/outputs/outputs.py +2 -0
  25. prowler/lib/outputs/summary_table.py +3 -0
  26. prowler/providers/alibabacloud/__init__.py +0 -0
  27. prowler/providers/alibabacloud/alibabacloud_provider.py +872 -0
  28. prowler/providers/alibabacloud/config.py +41 -0
  29. prowler/providers/alibabacloud/exceptions/__init__.py +0 -0
  30. prowler/providers/alibabacloud/exceptions/exceptions.py +116 -0
  31. prowler/providers/alibabacloud/lib/__init__.py +0 -0
  32. prowler/providers/alibabacloud/lib/arguments/__init__.py +0 -0
  33. prowler/providers/alibabacloud/lib/arguments/arguments.py +58 -0
  34. prowler/providers/alibabacloud/lib/mutelist/__init__.py +0 -0
  35. prowler/providers/alibabacloud/lib/mutelist/mutelist.py +175 -0
  36. prowler/providers/alibabacloud/lib/service/__init__.py +0 -0
  37. prowler/providers/alibabacloud/lib/service/service.py +113 -0
  38. prowler/providers/alibabacloud/models.py +266 -0
  39. prowler/providers/alibabacloud/services/__init__.py +0 -0
  40. prowler/providers/alibabacloud/services/actiontrail/__init__.py +0 -0
  41. prowler/providers/alibabacloud/services/actiontrail/actiontrail_client.py +6 -0
  42. prowler/providers/alibabacloud/services/actiontrail/actiontrail_multi_region_enabled/__init__.py +0 -0
  43. prowler/providers/alibabacloud/services/actiontrail/actiontrail_multi_region_enabled/actiontrail_multi_region_enabled.metadata.json +39 -0
  44. prowler/providers/alibabacloud/services/actiontrail/actiontrail_multi_region_enabled/actiontrail_multi_region_enabled.py +81 -0
  45. prowler/providers/alibabacloud/services/actiontrail/actiontrail_oss_bucket_not_publicly_accessible/__init__.py +0 -0
  46. prowler/providers/alibabacloud/services/actiontrail/actiontrail_oss_bucket_not_publicly_accessible/actiontrail_oss_bucket_not_publicly_accessible.metadata.json +40 -0
  47. prowler/providers/alibabacloud/services/actiontrail/actiontrail_oss_bucket_not_publicly_accessible/actiontrail_oss_bucket_not_publicly_accessible.py +119 -0
  48. prowler/providers/alibabacloud/services/actiontrail/actiontrail_service.py +110 -0
  49. prowler/providers/alibabacloud/services/cs/__init__.py +0 -0
  50. prowler/providers/alibabacloud/services/cs/cs_client.py +4 -0
  51. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cloudmonitor_enabled/__init__.py +0 -0
  52. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cloudmonitor_enabled/cs_kubernetes_cloudmonitor_enabled.metadata.json +38 -0
  53. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cloudmonitor_enabled/cs_kubernetes_cloudmonitor_enabled.py +26 -0
  54. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cluster_check_recent/__init__.py +0 -0
  55. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cluster_check_recent/cs_kubernetes_cluster_check_recent.metadata.json +38 -0
  56. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cluster_check_recent/cs_kubernetes_cluster_check_recent.py +62 -0
  57. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cluster_check_weekly/cs_kubernetes_cluster_check_weekly.metadata.json +38 -0
  58. prowler/providers/alibabacloud/services/cs/cs_kubernetes_cluster_check_weekly/cs_kubernetes_cluster_check_weekly.py +62 -0
  59. prowler/providers/alibabacloud/services/cs/cs_kubernetes_dashboard_disabled/__init__.py +0 -0
  60. prowler/providers/alibabacloud/services/cs/cs_kubernetes_dashboard_disabled/cs_kubernetes_dashboard_disabled.metadata.json +39 -0
  61. prowler/providers/alibabacloud/services/cs/cs_kubernetes_dashboard_disabled/cs_kubernetes_dashboard_disabled.py +26 -0
  62. prowler/providers/alibabacloud/services/cs/cs_kubernetes_eni_multiple_ip_enabled/__init__.py +0 -0
  63. prowler/providers/alibabacloud/services/cs/cs_kubernetes_eni_multiple_ip_enabled/cs_kubernetes_eni_multiple_ip_enabled.metadata.json +39 -0
  64. prowler/providers/alibabacloud/services/cs/cs_kubernetes_eni_multiple_ip_enabled/cs_kubernetes_eni_multiple_ip_enabled.py +26 -0
  65. prowler/providers/alibabacloud/services/cs/cs_kubernetes_log_service_enabled/__init__.py +0 -0
  66. prowler/providers/alibabacloud/services/cs/cs_kubernetes_log_service_enabled/cs_kubernetes_log_service_enabled.metadata.json +40 -0
  67. prowler/providers/alibabacloud/services/cs/cs_kubernetes_log_service_enabled/cs_kubernetes_log_service_enabled.py +26 -0
  68. prowler/providers/alibabacloud/services/cs/cs_kubernetes_network_policy_enabled/__init__.py +0 -0
  69. prowler/providers/alibabacloud/services/cs/cs_kubernetes_network_policy_enabled/cs_kubernetes_network_policy_enabled.metadata.json +39 -0
  70. prowler/providers/alibabacloud/services/cs/cs_kubernetes_network_policy_enabled/cs_kubernetes_network_policy_enabled.py +26 -0
  71. prowler/providers/alibabacloud/services/cs/cs_kubernetes_private_cluster_enabled/__init__.py +0 -0
  72. prowler/providers/alibabacloud/services/cs/cs_kubernetes_private_cluster_enabled/cs_kubernetes_private_cluster_enabled.metadata.json +39 -0
  73. prowler/providers/alibabacloud/services/cs/cs_kubernetes_private_cluster_enabled/cs_kubernetes_private_cluster_enabled.py +26 -0
  74. prowler/providers/alibabacloud/services/cs/cs_kubernetes_rbac_enabled/__init__.py +0 -0
  75. prowler/providers/alibabacloud/services/cs/cs_kubernetes_rbac_enabled/cs_kubernetes_rbac_enabled.metadata.json +40 -0
  76. prowler/providers/alibabacloud/services/cs/cs_kubernetes_rbac_enabled/cs_kubernetes_rbac_enabled.py +28 -0
  77. prowler/providers/alibabacloud/services/cs/cs_service.py +354 -0
  78. prowler/providers/alibabacloud/services/ecs/__init__.py +0 -0
  79. prowler/providers/alibabacloud/services/ecs/ecs_attached_disk_encrypted/__init__.py +0 -0
  80. prowler/providers/alibabacloud/services/ecs/ecs_attached_disk_encrypted/ecs_attached_disk_encrypted.metadata.json +38 -0
  81. prowler/providers/alibabacloud/services/ecs/ecs_attached_disk_encrypted/ecs_attached_disk_encrypted.py +38 -0
  82. prowler/providers/alibabacloud/services/ecs/ecs_client.py +4 -0
  83. prowler/providers/alibabacloud/services/ecs/ecs_instance_endpoint_protection_installed/__init__.py +0 -0
  84. prowler/providers/alibabacloud/services/ecs/ecs_instance_endpoint_protection_installed/ecs_instance_endpoint_protection_installed.metadata.json +41 -0
  85. prowler/providers/alibabacloud/services/ecs/ecs_instance_endpoint_protection_installed/ecs_instance_endpoint_protection_installed.py +47 -0
  86. prowler/providers/alibabacloud/services/ecs/ecs_instance_latest_os_patches_applied/__init__.py +0 -0
  87. prowler/providers/alibabacloud/services/ecs/ecs_instance_latest_os_patches_applied/ecs_instance_latest_os_patches_applied.metadata.json +38 -0
  88. prowler/providers/alibabacloud/services/ecs/ecs_instance_latest_os_patches_applied/ecs_instance_latest_os_patches_applied.py +50 -0
  89. prowler/providers/alibabacloud/services/ecs/ecs_instance_no_legacy_network/__init__.py +0 -0
  90. prowler/providers/alibabacloud/services/ecs/ecs_instance_no_legacy_network/ecs_instance_no_legacy_network.metadata.json +38 -0
  91. prowler/providers/alibabacloud/services/ecs/ecs_instance_no_legacy_network/ecs_instance_no_legacy_network.py +34 -0
  92. prowler/providers/alibabacloud/services/ecs/ecs_securitygroup_restrict_rdp_internet/__init__.py +0 -0
  93. prowler/providers/alibabacloud/services/ecs/ecs_securitygroup_restrict_rdp_internet/ecs_securitygroup_restrict_rdp_internet.metadata.json +39 -0
  94. prowler/providers/alibabacloud/services/ecs/ecs_securitygroup_restrict_rdp_internet/ecs_securitygroup_restrict_rdp_internet.py +68 -0
  95. prowler/providers/alibabacloud/services/ecs/ecs_securitygroup_restrict_ssh_internet/__init__.py +0 -0
  96. prowler/providers/alibabacloud/services/ecs/ecs_securitygroup_restrict_ssh_internet/ecs_securitygroup_restrict_ssh_internet.metadata.json +39 -0
  97. prowler/providers/alibabacloud/services/ecs/ecs_securitygroup_restrict_ssh_internet/ecs_securitygroup_restrict_ssh_internet.py +68 -0
  98. prowler/providers/alibabacloud/services/ecs/ecs_service.py +380 -0
  99. prowler/providers/alibabacloud/services/ecs/ecs_unattached_disk_encrypted/__init__.py +0 -0
  100. prowler/providers/alibabacloud/services/ecs/ecs_unattached_disk_encrypted/ecs_unattached_disk_encrypted.metadata.json +38 -0
  101. prowler/providers/alibabacloud/services/ecs/ecs_unattached_disk_encrypted/ecs_unattached_disk_encrypted.py +38 -0
  102. prowler/providers/alibabacloud/services/ecs/lib/security_groups.py +23 -0
  103. prowler/providers/alibabacloud/services/oss/__init__.py +0 -0
  104. prowler/providers/alibabacloud/services/oss/oss_bucket_logging_enabled/__init__.py +0 -0
  105. prowler/providers/alibabacloud/services/oss/oss_bucket_logging_enabled/oss_bucket_logging_enabled.metadata.json +39 -0
  106. prowler/providers/alibabacloud/services/oss/oss_bucket_logging_enabled/oss_bucket_logging_enabled.py +37 -0
  107. prowler/providers/alibabacloud/services/oss/oss_bucket_not_publicly_accessible/__init__.py +0 -0
  108. prowler/providers/alibabacloud/services/oss/oss_bucket_not_publicly_accessible/oss_bucket_not_publicly_accessible.metadata.json +39 -0
  109. prowler/providers/alibabacloud/services/oss/oss_bucket_not_publicly_accessible/oss_bucket_not_publicly_accessible.py +89 -0
  110. prowler/providers/alibabacloud/services/oss/oss_bucket_secure_transport_enabled/__init__.py +0 -0
  111. prowler/providers/alibabacloud/services/oss/oss_bucket_secure_transport_enabled/oss_bucket_secure_transport_enabled.metadata.json +38 -0
  112. prowler/providers/alibabacloud/services/oss/oss_bucket_secure_transport_enabled/oss_bucket_secure_transport_enabled.py +87 -0
  113. prowler/providers/alibabacloud/services/oss/oss_client.py +4 -0
  114. prowler/providers/alibabacloud/services/oss/oss_service.py +317 -0
  115. prowler/providers/alibabacloud/services/ram/__init__.py +0 -0
  116. prowler/providers/alibabacloud/services/ram/ram_client.py +4 -0
  117. prowler/providers/alibabacloud/services/ram/ram_no_root_access_key/__init__.py +0 -0
  118. prowler/providers/alibabacloud/services/ram/ram_no_root_access_key/ram_no_root_access_key.metadata.json +39 -0
  119. prowler/providers/alibabacloud/services/ram/ram_no_root_access_key/ram_no_root_access_key.py +33 -0
  120. prowler/providers/alibabacloud/services/ram/ram_password_policy_lowercase/__init__.py +0 -0
  121. prowler/providers/alibabacloud/services/ram/ram_password_policy_lowercase/ram_password_policy_lowercase.metadata.json +39 -0
  122. prowler/providers/alibabacloud/services/ram/ram_password_policy_lowercase/ram_password_policy_lowercase.py +32 -0
  123. prowler/providers/alibabacloud/services/ram/ram_password_policy_max_login_attempts/__init__.py +0 -0
  124. prowler/providers/alibabacloud/services/ram/ram_password_policy_max_login_attempts/ram_password_policy_max_login_attempts.metadata.json +39 -0
  125. prowler/providers/alibabacloud/services/ram/ram_password_policy_max_login_attempts/ram_password_policy_max_login_attempts.py +32 -0
  126. prowler/providers/alibabacloud/services/ram/ram_password_policy_max_password_age/__init__.py +0 -0
  127. prowler/providers/alibabacloud/services/ram/ram_password_policy_max_password_age/ram_password_policy_max_password_age.metadata.json +39 -0
  128. prowler/providers/alibabacloud/services/ram/ram_password_policy_max_password_age/ram_password_policy_max_password_age.py +35 -0
  129. prowler/providers/alibabacloud/services/ram/ram_password_policy_minimum_length/__init__.py +0 -0
  130. prowler/providers/alibabacloud/services/ram/ram_password_policy_minimum_length/ram_password_policy_minimum_length.metadata.json +39 -0
  131. prowler/providers/alibabacloud/services/ram/ram_password_policy_minimum_length/ram_password_policy_minimum_length.py +30 -0
  132. prowler/providers/alibabacloud/services/ram/ram_password_policy_number/__init__.py +0 -0
  133. prowler/providers/alibabacloud/services/ram/ram_password_policy_number/ram_password_policy_number.metadata.json +39 -0
  134. prowler/providers/alibabacloud/services/ram/ram_password_policy_password_reuse_prevention/__init__.py +0 -0
  135. prowler/providers/alibabacloud/services/ram/ram_password_policy_password_reuse_prevention/ram_password_policy_password_reuse_prevention.metadata.json +39 -0
  136. prowler/providers/alibabacloud/services/ram/ram_password_policy_password_reuse_prevention/ram_password_policy_password_reuse_prevention.py +35 -0
  137. prowler/providers/alibabacloud/services/ram/ram_password_policy_symbol/__init__.py +0 -0
  138. prowler/providers/alibabacloud/services/ram/ram_password_policy_symbol/ram_password_policy_symbol.metadata.json +39 -0
  139. prowler/providers/alibabacloud/services/ram/ram_password_policy_symbol/ram_password_policy_symbol.py +34 -0
  140. prowler/providers/alibabacloud/services/ram/ram_password_policy_uppercase/__init__.py +0 -0
  141. prowler/providers/alibabacloud/services/ram/ram_password_policy_uppercase/ram_password_policy_uppercase.metadata.json +39 -0
  142. prowler/providers/alibabacloud/services/ram/ram_password_policy_uppercase/ram_password_policy_uppercase.py +32 -0
  143. prowler/providers/alibabacloud/services/ram/ram_policy_attached_only_to_group_or_roles/__init__.py +0 -0
  144. prowler/providers/alibabacloud/services/ram/ram_policy_attached_only_to_group_or_roles/ram_policy_attached_only_to_group_or_roles.metadata.json +39 -0
  145. prowler/providers/alibabacloud/services/ram/ram_policy_attached_only_to_group_or_roles/ram_policy_attached_only_to_group_or_roles.py +35 -0
  146. prowler/providers/alibabacloud/services/ram/ram_policy_no_administrative_privileges/__init__.py +0 -0
  147. prowler/providers/alibabacloud/services/ram/ram_policy_no_administrative_privileges/ram_policy_no_administrative_privileges.metadata.json +39 -0
  148. prowler/providers/alibabacloud/services/ram/ram_policy_no_administrative_privileges/ram_policy_no_administrative_privileges.py +73 -0
  149. prowler/providers/alibabacloud/services/ram/ram_rotate_access_key_90_days/__init__.py +0 -0
  150. prowler/providers/alibabacloud/services/ram/ram_rotate_access_key_90_days/ram_rotate_access_key_90_days.metadata.json +39 -0
  151. prowler/providers/alibabacloud/services/ram/ram_rotate_access_key_90_days/ram_rotate_access_key_90_days.py +58 -0
  152. prowler/providers/alibabacloud/services/ram/ram_service.py +478 -0
  153. prowler/providers/alibabacloud/services/ram/ram_user_console_access_unused/__init__.py +0 -0
  154. prowler/providers/alibabacloud/services/ram/ram_user_console_access_unused/ram_user_console_access_unused.metadata.json +39 -0
  155. prowler/providers/alibabacloud/services/ram/ram_user_console_access_unused/ram_user_console_access_unused.py +56 -0
  156. prowler/providers/alibabacloud/services/ram/ram_user_mfa_enabled_console_access/__init__.py +0 -0
  157. prowler/providers/alibabacloud/services/ram/ram_user_mfa_enabled_console_access/ram_user_mfa_enabled_console_access.metadata.json +39 -0
  158. prowler/providers/alibabacloud/services/ram/ram_user_mfa_enabled_console_access/ram_user_mfa_enabled_console_access.py +36 -0
  159. prowler/providers/alibabacloud/services/rds/__init__.py +0 -0
  160. prowler/providers/alibabacloud/services/rds/rds_client.py +4 -0
  161. prowler/providers/alibabacloud/services/rds/rds_instance_no_public_access_whitelist/__init__.py +0 -0
  162. prowler/providers/alibabacloud/services/rds/rds_instance_no_public_access_whitelist/rds_instance_no_public_access_whitelist.metadata.json +39 -0
  163. prowler/providers/alibabacloud/services/rds/rds_instance_no_public_access_whitelist/rds_instance_no_public_access_whitelist.py +36 -0
  164. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_connections_enabled/__init__.py +0 -0
  165. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_connections_enabled/rds_instance_postgresql_log_connections_enabled.metadata.json +39 -0
  166. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_connections_enabled/rds_instance_postgresql_log_connections_enabled.py +29 -0
  167. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_disconnections_enabled/__init__.py +0 -0
  168. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_disconnections_enabled/rds_instance_postgresql_log_disconnections_enabled.metadata.json +39 -0
  169. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_disconnections_enabled/rds_instance_postgresql_log_disconnections_enabled.py +29 -0
  170. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_duration_enabled/__init__.py +0 -0
  171. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_duration_enabled/rds_instance_postgresql_log_duration_enabled.metadata.json +38 -0
  172. prowler/providers/alibabacloud/services/rds/rds_instance_postgresql_log_duration_enabled/rds_instance_postgresql_log_duration_enabled.py +29 -0
  173. prowler/providers/alibabacloud/services/rds/rds_instance_sql_audit_enabled/__init__.py +0 -0
  174. prowler/providers/alibabacloud/services/rds/rds_instance_sql_audit_enabled/rds_instance_sql_audit_enabled.metadata.json +39 -0
  175. prowler/providers/alibabacloud/services/rds/rds_instance_sql_audit_enabled/rds_instance_sql_audit_enabled.py +32 -0
  176. prowler/providers/alibabacloud/services/rds/rds_instance_sql_audit_retention/__init__.py +0 -0
  177. prowler/providers/alibabacloud/services/rds/rds_instance_sql_audit_retention/rds_instance_sql_audit_retention.metadata.json +39 -0
  178. prowler/providers/alibabacloud/services/rds/rds_instance_sql_audit_retention/rds_instance_sql_audit_retention.py +41 -0
  179. prowler/providers/alibabacloud/services/rds/rds_instance_ssl_enabled/__init__.py +0 -0
  180. prowler/providers/alibabacloud/services/rds/rds_instance_ssl_enabled/rds_instance_ssl_enabled.metadata.json +39 -0
  181. prowler/providers/alibabacloud/services/rds/rds_instance_ssl_enabled/rds_instance_ssl_enabled.py +30 -0
  182. prowler/providers/alibabacloud/services/rds/rds_instance_tde_enabled/__init__.py +0 -0
  183. prowler/providers/alibabacloud/services/rds/rds_instance_tde_enabled/rds_instance_tde_enabled.metadata.json +39 -0
  184. prowler/providers/alibabacloud/services/rds/rds_instance_tde_enabled/rds_instance_tde_enabled.py +32 -0
  185. prowler/providers/alibabacloud/services/rds/rds_instance_tde_key_custom/__init__.py +0 -0
  186. prowler/providers/alibabacloud/services/rds/rds_instance_tde_key_custom/rds_instance_tde_key_custom.metadata.json +39 -0
  187. prowler/providers/alibabacloud/services/rds/rds_instance_tde_key_custom/rds_instance_tde_key_custom.py +38 -0
  188. prowler/providers/alibabacloud/services/rds/rds_service.py +274 -0
  189. prowler/providers/alibabacloud/services/securitycenter/__init__.py +0 -0
  190. prowler/providers/alibabacloud/services/securitycenter/securitycenter_advanced_or_enterprise_edition/__init__.py +0 -0
  191. prowler/providers/alibabacloud/services/securitycenter/securitycenter_advanced_or_enterprise_edition/securitycenter_advanced_or_enterprise_edition.metadata.json +43 -0
  192. prowler/providers/alibabacloud/services/securitycenter/securitycenter_advanced_or_enterprise_edition/securitycenter_advanced_or_enterprise_edition.py +48 -0
  193. prowler/providers/alibabacloud/services/securitycenter/securitycenter_all_assets_agent_installed/__init__.py +0 -0
  194. prowler/providers/alibabacloud/services/securitycenter/securitycenter_all_assets_agent_installed/securitycenter_all_assets_agent_installed.metadata.json +42 -0
  195. prowler/providers/alibabacloud/services/securitycenter/securitycenter_all_assets_agent_installed/securitycenter_all_assets_agent_installed.py +48 -0
  196. prowler/providers/alibabacloud/services/securitycenter/securitycenter_client.py +6 -0
  197. prowler/providers/alibabacloud/services/securitycenter/securitycenter_notification_enabled_high_risk/__init__.py +0 -0
  198. prowler/providers/alibabacloud/services/securitycenter/securitycenter_notification_enabled_high_risk/securitycenter_notification_enabled_high_risk.metadata.json +42 -0
  199. prowler/providers/alibabacloud/services/securitycenter/securitycenter_notification_enabled_high_risk/securitycenter_notification_enabled_high_risk.py +65 -0
  200. prowler/providers/alibabacloud/services/securitycenter/securitycenter_service.py +394 -0
  201. prowler/providers/alibabacloud/services/securitycenter/securitycenter_vulnerability_scan_enabled/__init__.py +0 -0
  202. prowler/providers/alibabacloud/services/securitycenter/securitycenter_vulnerability_scan_enabled/securitycenter_vulnerability_scan_enabled.metadata.json +39 -0
  203. prowler/providers/alibabacloud/services/securitycenter/securitycenter_vulnerability_scan_enabled/securitycenter_vulnerability_scan_enabled.py +68 -0
  204. prowler/providers/alibabacloud/services/sls/__init__.py +0 -0
  205. prowler/providers/alibabacloud/services/sls/sls_client.py +4 -0
  206. prowler/providers/alibabacloud/services/sls/sls_cloud_firewall_changes_alert_enabled/__init__.py +0 -0
  207. prowler/providers/alibabacloud/services/sls/sls_cloud_firewall_changes_alert_enabled/sls_cloud_firewall_changes_alert_enabled.metadata.json +39 -0
  208. prowler/providers/alibabacloud/services/sls/sls_cloud_firewall_changes_alert_enabled/sls_cloud_firewall_changes_alert_enabled.py +50 -0
  209. prowler/providers/alibabacloud/services/sls/sls_customer_created_cmk_changes_alert_enabled/__init__.py +0 -0
  210. prowler/providers/alibabacloud/services/sls/sls_customer_created_cmk_changes_alert_enabled/sls_customer_created_cmk_changes_alert_enabled.metadata.json +39 -0
  211. prowler/providers/alibabacloud/services/sls/sls_customer_created_cmk_changes_alert_enabled/sls_customer_created_cmk_changes_alert_enabled.py +48 -0
  212. prowler/providers/alibabacloud/services/sls/sls_logstore_retention_period/__init__.py +0 -0
  213. prowler/providers/alibabacloud/services/sls/sls_logstore_retention_period/sls_logstore_retention_period.metadata.json +38 -0
  214. prowler/providers/alibabacloud/services/sls/sls_logstore_retention_period/sls_logstore_retention_period.py +32 -0
  215. prowler/providers/alibabacloud/services/sls/sls_management_console_authentication_failures_alert_enabled/__init__.py +0 -0
  216. prowler/providers/alibabacloud/services/sls/sls_management_console_authentication_failures_alert_enabled/sls_management_console_authentication_failures_alert_enabled.metadata.json +39 -0
  217. prowler/providers/alibabacloud/services/sls/sls_management_console_authentication_failures_alert_enabled/sls_management_console_authentication_failures_alert_enabled.py +44 -0
  218. prowler/providers/alibabacloud/services/sls/sls_management_console_signin_without_mfa_alert_enabled/__init__.py +0 -0
  219. prowler/providers/alibabacloud/services/sls/sls_management_console_signin_without_mfa_alert_enabled/sls_management_console_signin_without_mfa_alert_enabled.metadata.json +39 -0
  220. prowler/providers/alibabacloud/services/sls/sls_management_console_signin_without_mfa_alert_enabled/sls_management_console_signin_without_mfa_alert_enabled.py +49 -0
  221. prowler/providers/alibabacloud/services/sls/sls_oss_bucket_policy_changes_alert_enabled/__init__.py +0 -0
  222. prowler/providers/alibabacloud/services/sls/sls_oss_bucket_policy_changes_alert_enabled/sls_oss_bucket_policy_changes_alert_enabled.metadata.json +39 -0
  223. prowler/providers/alibabacloud/services/sls/sls_oss_bucket_policy_changes_alert_enabled/sls_oss_bucket_policy_changes_alert_enabled.py +57 -0
  224. prowler/providers/alibabacloud/services/sls/sls_oss_permission_changes_alert_enabled/__init__.py +0 -0
  225. prowler/providers/alibabacloud/services/sls/sls_oss_permission_changes_alert_enabled/sls_oss_permission_changes_alert_enabled.metadata.json +39 -0
  226. prowler/providers/alibabacloud/services/sls/sls_oss_permission_changes_alert_enabled/sls_oss_permission_changes_alert_enabled.py +48 -0
  227. prowler/providers/alibabacloud/services/sls/sls_ram_role_changes_alert_enabled/__init__.py +0 -0
  228. prowler/providers/alibabacloud/services/sls/sls_ram_role_changes_alert_enabled/sls_ram_role_changes_alert_enabled.metadata.json +39 -0
  229. prowler/providers/alibabacloud/services/sls/sls_ram_role_changes_alert_enabled/sls_ram_role_changes_alert_enabled.py +54 -0
  230. prowler/providers/alibabacloud/services/sls/sls_rds_instance_configuration_changes_alert_enabled/__init__.py +0 -0
  231. prowler/providers/alibabacloud/services/sls/sls_rds_instance_configuration_changes_alert_enabled/sls_rds_instance_configuration_changes_alert_enabled.metadata.json +39 -0
  232. prowler/providers/alibabacloud/services/sls/sls_rds_instance_configuration_changes_alert_enabled/sls_rds_instance_configuration_changes_alert_enabled.py +72 -0
  233. prowler/providers/alibabacloud/services/sls/sls_root_account_usage_alert_enabled/__init__.py +0 -0
  234. prowler/providers/alibabacloud/services/sls/sls_root_account_usage_alert_enabled/sls_root_account_usage_alert_enabled.metadata.json +39 -0
  235. prowler/providers/alibabacloud/services/sls/sls_root_account_usage_alert_enabled/sls_root_account_usage_alert_enabled.py +50 -0
  236. prowler/providers/alibabacloud/services/sls/sls_security_group_changes_alert_enabled/__init__.py +0 -0
  237. prowler/providers/alibabacloud/services/sls/sls_security_group_changes_alert_enabled/sls_security_group_changes_alert_enabled.metadata.json +39 -0
  238. prowler/providers/alibabacloud/services/sls/sls_security_group_changes_alert_enabled/sls_security_group_changes_alert_enabled.py +56 -0
  239. prowler/providers/alibabacloud/services/sls/sls_service.py +137 -0
  240. prowler/providers/alibabacloud/services/sls/sls_unauthorized_api_calls_alert_enabled/__init__.py +0 -0
  241. prowler/providers/alibabacloud/services/sls/sls_unauthorized_api_calls_alert_enabled/sls_unauthorized_api_calls_alert_enabled.metadata.json +39 -0
  242. prowler/providers/alibabacloud/services/sls/sls_unauthorized_api_calls_alert_enabled/sls_unauthorized_api_calls_alert_enabled.py +56 -0
  243. prowler/providers/alibabacloud/services/sls/sls_vpc_changes_alert_enabled/__init__.py +0 -0
  244. prowler/providers/alibabacloud/services/sls/sls_vpc_changes_alert_enabled/sls_vpc_changes_alert_enabled.metadata.json +39 -0
  245. prowler/providers/alibabacloud/services/sls/sls_vpc_changes_alert_enabled/sls_vpc_changes_alert_enabled.py +57 -0
  246. prowler/providers/alibabacloud/services/sls/sls_vpc_network_route_changes_alert_enabled/__init__.py +0 -0
  247. prowler/providers/alibabacloud/services/sls/sls_vpc_network_route_changes_alert_enabled/sls_vpc_network_route_changes_alert_enabled.metadata.json +39 -0
  248. prowler/providers/alibabacloud/services/sls/sls_vpc_network_route_changes_alert_enabled/sls_vpc_network_route_changes_alert_enabled.py +52 -0
  249. prowler/providers/alibabacloud/services/vpc/__init__.py +0 -0
  250. prowler/providers/alibabacloud/services/vpc/vpc_client.py +4 -0
  251. prowler/providers/alibabacloud/services/vpc/vpc_flow_logs_enabled/__init__.py +0 -0
  252. prowler/providers/alibabacloud/services/vpc/vpc_flow_logs_enabled/vpc_flow_logs_enabled.metadata.json +39 -0
  253. prowler/providers/alibabacloud/services/vpc/vpc_flow_logs_enabled/vpc_flow_logs_enabled.py +30 -0
  254. prowler/providers/alibabacloud/services/vpc/vpc_service.py +102 -0
  255. prowler/providers/aws/aws_regions_by_service.json +20 -0
  256. prowler/providers/aws/services/apigateway/apigateway_restapi_waf_acl_attached/apigateway_restapi_waf_acl_attached.metadata.json +1 -3
  257. prowler/providers/aws/services/apigateway/apigateway_service.py +4 -1
  258. prowler/providers/aws/services/cloudtrail/cloudtrail_insights_exist/cloudtrail_insights_exist.metadata.json +1 -1
  259. prowler/providers/aws/services/cloudwatch/cloudwatch_changes_to_network_acls_alarm_configured/cloudwatch_changes_to_network_acls_alarm_configured.metadata.json +1 -2
  260. prowler/providers/aws/services/cloudwatch/cloudwatch_changes_to_network_gateways_alarm_configured/cloudwatch_changes_to_network_gateways_alarm_configured.metadata.json +1 -2
  261. prowler/providers/aws/services/cloudwatch/cloudwatch_changes_to_network_route_tables_alarm_configured/cloudwatch_changes_to_network_route_tables_alarm_configured.metadata.json +1 -2
  262. prowler/providers/aws/services/cloudwatch/cloudwatch_changes_to_vpcs_alarm_configured/cloudwatch_changes_to_vpcs_alarm_configured.metadata.json +1 -2
  263. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_and_alarm_for_aws_config_configuration_changes_enabled/cloudwatch_log_metric_filter_and_alarm_for_aws_config_configuration_changes_enabled.metadata.json +1 -2
  264. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_and_alarm_for_cloudtrail_configuration_changes_enabled/cloudwatch_log_metric_filter_and_alarm_for_cloudtrail_configuration_changes_enabled.metadata.json +1 -2
  265. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_authentication_failures/cloudwatch_log_metric_filter_authentication_failures.metadata.json +1 -2
  266. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_aws_organizations_changes/cloudwatch_log_metric_filter_aws_organizations_changes.metadata.json +1 -2
  267. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_for_s3_bucket_policy_changes/cloudwatch_log_metric_filter_for_s3_bucket_policy_changes.metadata.json +1 -2
  268. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_policy_changes/cloudwatch_log_metric_filter_policy_changes.metadata.json +1 -2
  269. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_root_usage/cloudwatch_log_metric_filter_root_usage.metadata.json +1 -2
  270. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_security_group_changes/cloudwatch_log_metric_filter_security_group_changes.metadata.json +1 -2
  271. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_sign_in_without_mfa/cloudwatch_log_metric_filter_sign_in_without_mfa.metadata.json +1 -2
  272. prowler/providers/aws/services/cloudwatch/cloudwatch_log_metric_filter_unauthorized_api_calls/cloudwatch_log_metric_filter_unauthorized_api_calls.metadata.json +0 -1
  273. prowler/providers/aws/services/guardduty/guardduty_centrally_managed/guardduty_centrally_managed.metadata.json +16 -10
  274. prowler/providers/aws/services/guardduty/guardduty_ec2_malware_protection_enabled/guardduty_ec2_malware_protection_enabled.metadata.json +23 -14
  275. prowler/providers/aws/services/guardduty/guardduty_eks_audit_log_enabled/guardduty_eks_audit_log_enabled.metadata.json +19 -13
  276. prowler/providers/aws/services/guardduty/guardduty_eks_runtime_monitoring_enabled/guardduty_eks_runtime_monitoring_enabled.metadata.json +18 -12
  277. prowler/providers/aws/services/guardduty/guardduty_is_enabled/guardduty_is_enabled.metadata.json +24 -13
  278. prowler/providers/aws/services/guardduty/guardduty_lambda_protection_enabled/guardduty_lambda_protection_enabled.metadata.json +20 -14
  279. prowler/providers/aws/services/guardduty/guardduty_no_high_severity_findings/guardduty_no_high_severity_findings.metadata.json +18 -9
  280. prowler/providers/aws/services/guardduty/guardduty_rds_protection_enabled/guardduty_rds_protection_enabled.metadata.json +18 -11
  281. prowler/providers/aws/services/guardduty/guardduty_s3_protection_enabled/guardduty_s3_protection_enabled.metadata.json +21 -12
  282. prowler/providers/aws/services/lightsail/lightsail_database_public/lightsail_database_public.metadata.json +21 -13
  283. prowler/providers/aws/services/lightsail/lightsail_instance_automated_snapshots/lightsail_instance_automated_snapshots.metadata.json +24 -13
  284. prowler/providers/aws/services/lightsail/lightsail_instance_public/lightsail_instance_public.metadata.json +21 -13
  285. prowler/providers/aws/services/lightsail/lightsail_static_ip_unused/lightsail_static_ip_unused.metadata.json +23 -14
  286. prowler/providers/aws/services/macie/macie_automated_sensitive_data_discovery_enabled/macie_automated_sensitive_data_discovery_enabled.metadata.json +20 -12
  287. prowler/providers/aws/services/macie/macie_is_enabled/macie_is_enabled.metadata.json +17 -12
  288. prowler/providers/aws/services/mq/mq_broker_active_deployment_mode/mq_broker_active_deployment_mode.metadata.json +22 -13
  289. prowler/providers/aws/services/mq/mq_broker_auto_minor_version_upgrades/mq_broker_auto_minor_version_upgrades.metadata.json +21 -12
  290. prowler/providers/aws/services/mq/mq_broker_cluster_deployment_mode/mq_broker_cluster_deployment_mode.metadata.json +23 -14
  291. prowler/providers/aws/services/mq/mq_broker_logging_enabled/mq_broker_logging_enabled.metadata.json +22 -13
  292. prowler/providers/aws/services/mq/mq_broker_not_publicly_accessible/mq_broker_not_publicly_accessible.metadata.json +20 -12
  293. prowler/providers/aws/services/networkfirewall/networkfirewall_deletion_protection/networkfirewall_deletion_protection.metadata.json +21 -13
  294. prowler/providers/aws/services/networkfirewall/networkfirewall_in_all_vpc/networkfirewall_in_all_vpc.metadata.json +23 -13
  295. prowler/providers/aws/services/networkfirewall/networkfirewall_logging_enabled/networkfirewall_logging_enabled.metadata.json +20 -13
  296. prowler/providers/aws/services/networkfirewall/networkfirewall_multi_az/networkfirewall_multi_az.metadata.json +22 -14
  297. prowler/providers/aws/services/networkfirewall/networkfirewall_policy_default_action_fragmented_packets/networkfirewall_policy_default_action_fragmented_packets.metadata.json +26 -14
  298. prowler/providers/aws/services/networkfirewall/networkfirewall_policy_default_action_full_packets/networkfirewall_policy_default_action_full_packets.metadata.json +22 -13
  299. prowler/providers/aws/services/networkfirewall/networkfirewall_policy_rule_group_associated/networkfirewall_policy_rule_group_associated.metadata.json +25 -14
  300. prowler/providers/common/provider.py +12 -0
  301. prowler/providers/gcp/services/accesscontextmanager/__init__.py +0 -0
  302. prowler/providers/gcp/services/accesscontextmanager/accesscontextmanager_client.py +6 -0
  303. prowler/providers/gcp/services/accesscontextmanager/accesscontextmanager_service.py +101 -0
  304. prowler/providers/gcp/services/cloudresourcemanager/cloudresourcemanager_service.py +10 -0
  305. prowler/providers/gcp/services/cloudstorage/cloudstorage_service.py +13 -0
  306. prowler/providers/gcp/services/cloudstorage/cloudstorage_uses_vpc_service_controls/__init__.py +0 -0
  307. prowler/providers/gcp/services/cloudstorage/cloudstorage_uses_vpc_service_controls/cloudstorage_uses_vpc_service_controls.metadata.json +36 -0
  308. prowler/providers/gcp/services/cloudstorage/cloudstorage_uses_vpc_service_controls/cloudstorage_uses_vpc_service_controls.py +67 -0
  309. prowler/providers/gcp/services/compute/compute_instance_automatic_restart_enabled/__init__.py +0 -0
  310. prowler/providers/gcp/services/compute/compute_instance_automatic_restart_enabled/compute_instance_automatic_restart_enabled.metadata.json +36 -0
  311. prowler/providers/gcp/services/compute/compute_instance_automatic_restart_enabled/compute_instance_automatic_restart_enabled.py +35 -0
  312. prowler/providers/gcp/services/compute/compute_instance_deletion_protection_enabled/__init__.py +0 -0
  313. prowler/providers/gcp/services/compute/compute_instance_deletion_protection_enabled/compute_instance_deletion_protection_enabled.metadata.json +36 -0
  314. prowler/providers/gcp/services/compute/compute_instance_deletion_protection_enabled/compute_instance_deletion_protection_enabled.py +29 -0
  315. prowler/providers/gcp/services/compute/compute_instance_preemptible_vm_disabled/__init__.py +0 -0
  316. prowler/providers/gcp/services/compute/compute_instance_preemptible_vm_disabled/compute_instance_preemptible_vm_disabled.metadata.json +37 -0
  317. prowler/providers/gcp/services/compute/compute_instance_preemptible_vm_disabled/compute_instance_preemptible_vm_disabled.py +32 -0
  318. prowler/providers/gcp/services/compute/compute_service.py +16 -0
  319. prowler/providers/github/services/repository/repository_immutable_releases_enabled/__init__.py +0 -0
  320. prowler/providers/github/services/repository/repository_immutable_releases_enabled/repository_immutable_releases_enabled.metadata.json +33 -0
  321. prowler/providers/github/services/repository/repository_immutable_releases_enabled/repository_immutable_releases_enabled.py +41 -0
  322. prowler/providers/github/services/repository/repository_service.py +52 -0
  323. {prowler_cloud-5.14.2.dist-info → prowler_cloud-5.15.1.dist-info}/METADATA +40 -22
  324. {prowler_cloud-5.14.2.dist-info → prowler_cloud-5.15.1.dist-info}/RECORD +327 -74
  325. {prowler_cloud-5.14.2.dist-info → prowler_cloud-5.15.1.dist-info}/LICENSE +0 -0
  326. {prowler_cloud-5.14.2.dist-info → prowler_cloud-5.15.1.dist-info}/WHEEL +0 -0
  327. {prowler_cloud-5.14.2.dist-info → prowler_cloud-5.15.1.dist-info}/entry_points.txt +0 -0
@@ -6,13 +6,13 @@
6
6
  "Description": "ISO (the International Organization for Standardization) and IEC (the International Electrotechnical Commission) form the specialized system for worldwide standardization. National bodies that are members of ISO or IEC participate in the development of International Standards through technical committees established by the respective organization to deal with particular fields of technical activity. ISO and IEC technical committees collaborate in fields of mutual interest. Other international organizations, governmental and non-governmental, in liaison with ISO and IEC, also take part in the work.",
7
7
  "Requirements": [
8
8
  {
9
- "Id": "A.10.1",
9
+ "Id": "A.10.1.A",
10
10
  "Description": "Setup Encryption at rest for RDS instances",
11
11
  "Name": "Cryptographic Controls",
12
12
  "Attributes": [
13
13
  {
14
14
  "Category": "A.10 Cryptography",
15
- "Objetive_ID": "A.10.1",
15
+ "Objetive_ID": "A.10.1.A",
16
16
  "Objetive_Name": "Cryptographic Controls",
17
17
  "Check_Summary": "Setup Encryption at rest for RDS instances"
18
18
  }
@@ -22,13 +22,13 @@
22
22
  ]
23
23
  },
24
24
  {
25
- "Id": "A.10.1",
25
+ "Id": "A.10.1.B",
26
26
  "Description": "Detect use of insecure ciphers on ELBs",
27
27
  "Name": "Cryptographic Controls",
28
28
  "Attributes": [
29
29
  {
30
30
  "Category": "A.10 Cryptography",
31
- "Objetive_ID": "A.10.1",
31
+ "Objetive_ID": "A.10.1.B",
32
32
  "Objetive_Name": "Cryptographic Controls",
33
33
  "Check_Summary": "Detect use of insecure ciphers on ELBs"
34
34
  }
@@ -39,13 +39,13 @@
39
39
  ]
40
40
  },
41
41
  {
42
- "Id": "A.10.1",
42
+ "Id": "A.10.1.C",
43
43
  "Description": "Detect Customer Master Keys (CMKs) scheduled for deletion",
44
44
  "Name": "Cryptographic Controls",
45
45
  "Attributes": [
46
46
  {
47
47
  "Category": "A.10 Cryptography",
48
- "Objetive_ID": "A.10.1",
48
+ "Objetive_ID": "A.10.1.C",
49
49
  "Objetive_Name": "Cryptographic Controls",
50
50
  "Check_Summary": "Detect Customer Master Keys (CMKs) scheduled for deletion"
51
51
  }
@@ -55,13 +55,13 @@
55
55
  ]
56
56
  },
57
57
  {
58
- "Id": "A.12.4",
58
+ "Id": "A.12.4.A",
59
59
  "Description": "Ensure a log metric filter and alarm exist for VPC changes",
60
60
  "Name": "Logging and Monitoring",
61
61
  "Attributes": [
62
62
  {
63
63
  "Category": "A.12 Operations Security",
64
- "Objetive_ID": "A.12.4",
64
+ "Objetive_ID": "A.12.4.A",
65
65
  "Objetive_Name": "Logging and Monitoring",
66
66
  "Check_Summary": "Ensure a log metric filter and alarm exist for VPC changes"
67
67
  }
@@ -71,13 +71,13 @@
71
71
  ]
72
72
  },
73
73
  {
74
- "Id": "A.12.4",
74
+ "Id": "A.12.4.B",
75
75
  "Description": "Ensure a log metric filter and alarm exist for route table changes",
76
76
  "Name": "Logging and Monitoring",
77
77
  "Attributes": [
78
78
  {
79
79
  "Category": "A.12 Operations Security",
80
- "Objetive_ID": "A.12.4",
80
+ "Objetive_ID": "A.12.4.B",
81
81
  "Objetive_Name": "Logging and Monitoring",
82
82
  "Check_Summary": "Ensure a log metric filter and alarm exist for route table changes"
83
83
  }
@@ -87,13 +87,13 @@
87
87
  ]
88
88
  },
89
89
  {
90
- "Id": "A.12.4",
90
+ "Id": "A.12.4.C",
91
91
  "Description": "Ensure a log metric filter and alarm exist for changes to network gateways",
92
92
  "Name": "Logging and Monitoring",
93
93
  "Attributes": [
94
94
  {
95
95
  "Category": "A.12 Operations Security",
96
- "Objetive_ID": "A.12.4",
96
+ "Objetive_ID": "A.12.4.C",
97
97
  "Objetive_Name": "Logging and Monitoring",
98
98
  "Check_Summary": "Ensure a log metric filter and alarm exist for changes to network gateways"
99
99
  }
@@ -103,13 +103,13 @@
103
103
  ]
104
104
  },
105
105
  {
106
- "Id": "A.12.4",
106
+ "Id": "A.12.4.D",
107
107
  "Description": "Ensure a log metric filter and alarm exist for changes to Network Access Control Lists (NACL)",
108
108
  "Name": "Logging and Monitoring",
109
109
  "Attributes": [
110
110
  {
111
111
  "Category": "A.12 Operations Security",
112
- "Objetive_ID": "A.12.4",
112
+ "Objetive_ID": "A.12.4.D",
113
113
  "Objetive_Name": "Logging and Monitoring",
114
114
  "Check_Summary": "Ensure a log metric filter and alarm exist for changes to Network Access Control Lists (NACL)"
115
115
  }
@@ -119,13 +119,13 @@
119
119
  ]
120
120
  },
121
121
  {
122
- "Id": "A.12.4",
122
+ "Id": "A.12.4.E",
123
123
  "Description": "Ensure a log metric filter and alarm exist for security group changes",
124
124
  "Name": "Logging and Monitoring",
125
125
  "Attributes": [
126
126
  {
127
127
  "Category": "A.12 Operations Security",
128
- "Objetive_ID": "A.12.4",
128
+ "Objetive_ID": "A.12.4.E",
129
129
  "Objetive_Name": "Logging and Monitoring",
130
130
  "Check_Summary": "Ensure a log metric filter and alarm exist for security group changes"
131
131
  }
@@ -135,13 +135,13 @@
135
135
  ]
136
136
  },
137
137
  {
138
- "Id": "A.12.4",
138
+ "Id": "A.12.4.F",
139
139
  "Description": "Ensure a log metric filter and alarm exist for AWS Config configuration changes",
140
140
  "Name": "Logging and Monitoring",
141
141
  "Attributes": [
142
142
  {
143
143
  "Category": "A.12 Operations Security",
144
- "Objetive_ID": "A.12.4",
144
+ "Objetive_ID": "A.12.4.F",
145
145
  "Objetive_Name": "Logging and Monitoring",
146
146
  "Check_Summary": "Ensure a log metric filter and alarm exist for AWS Config configuration changes"
147
147
  }
@@ -151,13 +151,13 @@
151
151
  ]
152
152
  },
153
153
  {
154
- "Id": "A.12.4",
154
+ "Id": "A.12.4.G",
155
155
  "Description": "Ensure a log metric filter and alarm exist for S3 bucket policy changes",
156
156
  "Name": "Logging and Monitoring",
157
157
  "Attributes": [
158
158
  {
159
159
  "Category": "A.12 Operations Security",
160
- "Objetive_ID": "A.12.4",
160
+ "Objetive_ID": "A.12.4.G",
161
161
  "Objetive_Name": "Logging and Monitoring",
162
162
  "Check_Summary": "Ensure a log metric filter and alarm exist for S3 bucket policy changes"
163
163
  }
@@ -167,13 +167,13 @@
167
167
  ]
168
168
  },
169
169
  {
170
- "Id": "A.12.4",
170
+ "Id": "A.12.4.H",
171
171
  "Description": "Ensure a log metric filter and alarm exist for disabling or scheduled deletion of customer created CMKs",
172
172
  "Name": "Logging and Monitoring",
173
173
  "Attributes": [
174
174
  {
175
175
  "Category": "A.12 Operations Security",
176
- "Objetive_ID": "A.12.4",
176
+ "Objetive_ID": "A.12.4.H",
177
177
  "Objetive_Name": "Logging and Monitoring",
178
178
  "Check_Summary": "Ensure a log metric filter and alarm exist for disabling or scheduled deletion of customer created CMKs"
179
179
  }
@@ -183,13 +183,13 @@
183
183
  ]
184
184
  },
185
185
  {
186
- "Id": "A.12.4",
186
+ "Id": "A.12.4.I",
187
187
  "Description": "Ensure a log metric filter and alarm exist for AWS Management Console authentication failures",
188
188
  "Name": "Logging and Monitoring",
189
189
  "Attributes": [
190
190
  {
191
191
  "Category": "A.12 Operations Security",
192
- "Objetive_ID": "A.12.4",
192
+ "Objetive_ID": "A.12.4.I",
193
193
  "Objetive_Name": "Logging and Monitoring",
194
194
  "Check_Summary": "Ensure a log metric filter and alarm exist for AWS Management Console authentication failures"
195
195
  }
@@ -199,13 +199,13 @@
199
199
  ]
200
200
  },
201
201
  {
202
- "Id": "A.12.4",
202
+ "Id": "A.12.4.J",
203
203
  "Description": "Ensure a log metric filter and alarm exist for CloudTrail configuration changes",
204
204
  "Name": "Logging and Monitoring",
205
205
  "Attributes": [
206
206
  {
207
207
  "Category": "A.12 Operations Security",
208
- "Objetive_ID": "A.12.4",
208
+ "Objetive_ID": "A.12.4.J",
209
209
  "Objetive_Name": "Logging and Monitoring",
210
210
  "Check_Summary": "Ensure a log metric filter and alarm exist for CloudTrail configuration changes"
211
211
  }
@@ -215,13 +215,13 @@
215
215
  ]
216
216
  },
217
217
  {
218
- "Id": "A.12.4",
218
+ "Id": "A.12.4.K",
219
219
  "Description": "Ensure a log metric filter and alarm exist for IAM policy changes",
220
220
  "Name": "Logging and Monitoring",
221
221
  "Attributes": [
222
222
  {
223
223
  "Category": "A.12 Operations Security",
224
- "Objetive_ID": "A.12.4",
224
+ "Objetive_ID": "A.12.4.K",
225
225
  "Objetive_Name": "Logging and Monitoring",
226
226
  "Check_Summary": "Ensure a log metric filter and alarm exist for IAM policy changes"
227
227
  }
@@ -231,13 +231,13 @@
231
231
  ]
232
232
  },
233
233
  {
234
- "Id": "A.12.4",
234
+ "Id": "A.12.4.L",
235
235
  "Description": "Ensure a log metric filter and alarm exist for usage of root account",
236
236
  "Name": "Logging and Monitoring",
237
237
  "Attributes": [
238
238
  {
239
239
  "Category": "A.12 Operations Security",
240
- "Objetive_ID": "A.12.4",
240
+ "Objetive_ID": "A.12.4.L",
241
241
  "Objetive_Name": "Logging and Monitoring",
242
242
  "Check_Summary": "Ensure a log metric filter and alarm exist for usage of root account"
243
243
  }
@@ -247,13 +247,13 @@
247
247
  ]
248
248
  },
249
249
  {
250
- "Id": "A.12.4",
250
+ "Id": "A.12.4.M",
251
251
  "Description": "Ensure a log metric filter and alarm exist for Management Console sign-in without MFA",
252
252
  "Name": "Logging and Monitoring",
253
253
  "Attributes": [
254
254
  {
255
255
  "Category": "A.12 Operations Security",
256
- "Objetive_ID": "A.12.4",
256
+ "Objetive_ID": "A.12.4.M",
257
257
  "Objetive_Name": "Logging and Monitoring",
258
258
  "Check_Summary": "Ensure a log metric filter and alarm exist for Management Console sign-in without MFA"
259
259
  }
@@ -263,13 +263,13 @@
263
263
  ]
264
264
  },
265
265
  {
266
- "Id": "A.12.4",
266
+ "Id": "A.12.4.N",
267
267
  "Description": "Ensure a log metric filter and alarm exist for unauthorized API calls",
268
268
  "Name": "Logging and Monitoring",
269
269
  "Attributes": [
270
270
  {
271
271
  "Category": "A.12 Operations Security",
272
- "Objetive_ID": "A.12.4",
272
+ "Objetive_ID": "A.12.4.N",
273
273
  "Objetive_Name": "Logging and Monitoring",
274
274
  "Check_Summary": "Ensure a log metric filter and alarm exist for unauthorized API calls"
275
275
  }
@@ -279,13 +279,13 @@
279
279
  ]
280
280
  },
281
281
  {
282
- "Id": "A.12.4",
282
+ "Id": "A.12.4.O",
283
283
  "Description": "Ensure S3 bucket access logging is enabled on the CloudTrail S3 bucket",
284
284
  "Name": "Logging and Monitoring",
285
285
  "Attributes": [
286
286
  {
287
287
  "Category": "A.12 Operations Security",
288
- "Objetive_ID": "A.12.4",
288
+ "Objetive_ID": "A.12.4.O",
289
289
  "Objetive_Name": "Logging and Monitoring",
290
290
  "Check_Summary": "Ensure S3 bucket access logging is enabled on the CloudTrail S3 bucket"
291
291
  }
@@ -295,13 +295,13 @@
295
295
  ]
296
296
  },
297
297
  {
298
- "Id": "A.12.4",
298
+ "Id": "A.12.4.P",
299
299
  "Description": "Ensure AWS Config is enabled in all regions",
300
300
  "Name": "Logging and Monitoring",
301
301
  "Attributes": [
302
302
  {
303
303
  "Category": "A.12 Operations Security",
304
- "Objetive_ID": "A.12.4",
304
+ "Objetive_ID": "A.12.4.P",
305
305
  "Objetive_Name": "Logging and Monitoring",
306
306
  "Check_Summary": "Ensure AWS Config is enabled in all regions"
307
307
  }
@@ -311,13 +311,13 @@
311
311
  ]
312
312
  },
313
313
  {
314
- "Id": "A.12.4",
314
+ "Id": "A.12.4.Q",
315
315
  "Description": "Ensure CloudTrail trails are integrated with CloudWatch Logs",
316
316
  "Name": "Logging and Monitoring",
317
317
  "Attributes": [
318
318
  {
319
319
  "Category": "A.12 Operations Security",
320
- "Objetive_ID": "A.12.4",
320
+ "Objetive_ID": "A.12.4.Q",
321
321
  "Objetive_Name": "Logging and Monitoring",
322
322
  "Check_Summary": "Ensure CloudTrail trails are integrated with CloudWatch Logs"
323
323
  }
@@ -327,13 +327,13 @@
327
327
  ]
328
328
  },
329
329
  {
330
- "Id": "A.12.4",
330
+ "Id": "A.12.4.R",
331
331
  "Description": "Ensure VPC flow logging is enabled in all VPCs",
332
332
  "Name": "Logging and Monitoring",
333
333
  "Attributes": [
334
334
  {
335
335
  "Category": "A.12 Operations Security",
336
- "Objetive_ID": "A.12.4",
336
+ "Objetive_ID": "A.12.4.R",
337
337
  "Objetive_Name": "Logging and Monitoring",
338
338
  "Check_Summary": "Ensure VPC flow logging is enabled in all VPCs"
339
339
  }
@@ -343,13 +343,13 @@
343
343
  ]
344
344
  },
345
345
  {
346
- "Id": "A.12.4",
346
+ "Id": "A.12.4.S",
347
347
  "Description": "Ensure the S3 bucket CloudTrail logs to is not publicly accessible",
348
348
  "Name": "Logging and Monitoring",
349
349
  "Attributes": [
350
350
  {
351
351
  "Category": "A.12 Operations Security",
352
- "Objetive_ID": "A.12.4",
352
+ "Objetive_ID": "A.12.4.S",
353
353
  "Objetive_Name": "Logging and Monitoring",
354
354
  "Check_Summary": "Ensure the S3 bucket CloudTrail logs to is not publicly accessible"
355
355
  }
@@ -359,13 +359,13 @@
359
359
  ]
360
360
  },
361
361
  {
362
- "Id": "A.12.4",
362
+ "Id": "A.12.4.T",
363
363
  "Description": "Ensure CloudTrail is enabled in all regions",
364
364
  "Name": "Logging and Monitoring",
365
365
  "Attributes": [
366
366
  {
367
367
  "Category": "A.12 Operations Security",
368
- "Objetive_ID": "A.12.4",
368
+ "Objetive_ID": "A.12.4.T",
369
369
  "Objetive_Name": "Logging and Monitoring",
370
370
  "Check_Summary": "Ensure CloudTrail is enabled in all regions"
371
371
  }
@@ -375,13 +375,13 @@
375
375
  ]
376
376
  },
377
377
  {
378
- "Id": "A.12.6",
378
+ "Id": "A.12.6.A",
379
379
  "Description": "Ensure the default security group of every VPC restricts all traffic",
380
380
  "Name": "Technical Vulnerability Management",
381
381
  "Attributes": [
382
382
  {
383
383
  "Category": "A.12 Operations Security",
384
- "Objetive_ID": "A.12.6",
384
+ "Objetive_ID": "A.12.6.A",
385
385
  "Objetive_Name": "Technical Vulnerability Management",
386
386
  "Check_Summary": "Ensure the default security group of every VPC restricts all traffic"
387
387
  }
@@ -391,13 +391,13 @@
391
391
  ]
392
392
  },
393
393
  {
394
- "Id": "A.12.6",
394
+ "Id": "A.12.6.B",
395
395
  "Description": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 3389",
396
396
  "Name": "Technical Vulnerability Management",
397
397
  "Attributes": [
398
398
  {
399
399
  "Category": "A.12 Operations Security",
400
- "Objetive_ID": "A.12.6",
400
+ "Objetive_ID": "A.12.6.B",
401
401
  "Objetive_Name": "Technical Vulnerability Management",
402
402
  "Check_Summary": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 3389"
403
403
  }
@@ -407,13 +407,13 @@
407
407
  ]
408
408
  },
409
409
  {
410
- "Id": "A.12.6",
410
+ "Id": "A.12.6.C",
411
411
  "Description": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 22",
412
412
  "Name": "Technical Vulnerability Management",
413
413
  "Attributes": [
414
414
  {
415
415
  "Category": "A.12 Operations Security",
416
- "Objetive_ID": "A.12.6",
416
+ "Objetive_ID": "A.12.6.C",
417
417
  "Objetive_Name": "Technical Vulnerability Management",
418
418
  "Check_Summary": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 22"
419
419
  }
@@ -423,13 +423,13 @@
423
423
  ]
424
424
  },
425
425
  {
426
- "Id": "A.12.6",
426
+ "Id": "A.12.6.D",
427
427
  "Description": "Check for publicly shared AMIs",
428
428
  "Name": "Technical Vulnerability Management",
429
429
  "Attributes": [
430
430
  {
431
431
  "Category": "A.12 Operations Security",
432
- "Objetive_ID": "A.12.6",
432
+ "Objetive_ID": "A.12.6.D",
433
433
  "Objetive_Name": "Technical Vulnerability Management",
434
434
  "Check_Summary": "Check for publicly shared AMIs"
435
435
  }
@@ -439,13 +439,13 @@
439
439
  ]
440
440
  },
441
441
  {
442
- "Id": "A.12.6",
442
+ "Id": "A.12.6.E",
443
443
  "Description": "Ensure EBS snapshots are not publicly accessible",
444
444
  "Name": "Technical Vulnerability Management",
445
445
  "Attributes": [
446
446
  {
447
447
  "Category": "A.12 Operations Security",
448
- "Objetive_ID": "A.12.6",
448
+ "Objetive_ID": "A.12.6.E",
449
449
  "Objetive_Name": "Technical Vulnerability Management",
450
450
  "Check_Summary": "Ensure EBS snapshots are not publicly accessible"
451
451
  }
@@ -455,13 +455,13 @@
455
455
  ]
456
456
  },
457
457
  {
458
- "Id": "A.12.6",
458
+ "Id": "A.12.6.F",
459
459
  "Description": "Ensure SNS topics do not allow global send or subscribe",
460
460
  "Name": "Technical Vulnerability Management",
461
461
  "Attributes": [
462
462
  {
463
463
  "Category": "A.12 Operations Security",
464
- "Objetive_ID": "A.12.6",
464
+ "Objetive_ID": "A.12.6.F",
465
465
  "Objetive_Name": "Technical Vulnerability Management",
466
466
  "Check_Summary": "Ensure SNS topics do not allow global send or subscribe"
467
467
  }
@@ -471,13 +471,13 @@
471
471
  ]
472
472
  },
473
473
  {
474
- "Id": "A.12.6",
474
+ "Id": "A.12.6.G",
475
475
  "Description": "Ensure Redshift clusters do not have a public endpoint",
476
476
  "Name": "Technical Vulnerability Management",
477
477
  "Attributes": [
478
478
  {
479
479
  "Category": "A.12 Operations Security",
480
- "Objetive_ID": "A.12.6",
480
+ "Objetive_ID": "A.12.6.G",
481
481
  "Objetive_Name": "Technical Vulnerability Management",
482
482
  "Check_Summary": "Ensure Redshift clusters do not have a public endpoint"
483
483
  }
@@ -487,13 +487,13 @@
487
487
  ]
488
488
  },
489
489
  {
490
- "Id": "A.12.6",
490
+ "Id": "A.12.6.H",
491
491
  "Description": "Ensure RDS snapshots are not publicly accessible",
492
492
  "Name": "Technical Vulnerability Management",
493
493
  "Attributes": [
494
494
  {
495
495
  "Category": "A.12 Operations Security",
496
- "Objetive_ID": "A.12.6",
496
+ "Objetive_ID": "A.12.6.H",
497
497
  "Objetive_Name": "Technical Vulnerability Management",
498
498
  "Check_Summary": "Ensure RDS snapshots are not publicly accessible"
499
499
  }
@@ -503,13 +503,13 @@
503
503
  ]
504
504
  },
505
505
  {
506
- "Id": "A.12.6",
506
+ "Id": "A.12.6.I",
507
507
  "Description": "Ensure RDS instances are not accessible to the world.",
508
508
  "Name": "Technical Vulnerability Management",
509
509
  "Attributes": [
510
510
  {
511
511
  "Category": "A.12 Operations Security",
512
- "Objetive_ID": "A.12.6",
512
+ "Objetive_ID": "A.12.6.I",
513
513
  "Objetive_Name": "Technical Vulnerability Management",
514
514
  "Check_Summary": "Ensure RDS instances are not accessible to the world."
515
515
  }
@@ -519,13 +519,13 @@
519
519
  ]
520
520
  },
521
521
  {
522
- "Id": "A.12.6",
522
+ "Id": "A.12.6.J",
523
523
  "Description": "Ensure the S3 bucket CloudTrail logs to is not publicly accessible",
524
524
  "Name": "Technical Vulnerability Management",
525
525
  "Attributes": [
526
526
  {
527
527
  "Category": "A.12 Operations Security",
528
- "Objetive_ID": "A.12.6",
528
+ "Objetive_ID": "A.12.6.J",
529
529
  "Objetive_Name": "Technical Vulnerability Management",
530
530
  "Check_Summary": "Ensure the S3 bucket CloudTrail logs to is not publicly accessible"
531
531
  }
@@ -535,13 +535,13 @@
535
535
  ]
536
536
  },
537
537
  {
538
- "Id": "A.13.1",
538
+ "Id": "A.13.1.A",
539
539
  "Description": "Ensure the default security group of every VPC restricts all traffic",
540
540
  "Name": "Network Security Management",
541
541
  "Attributes": [
542
542
  {
543
543
  "Category": "A.13 Communications Security",
544
- "Objetive_ID": "A.13.1",
544
+ "Objetive_ID": "A.13.1.A",
545
545
  "Objetive_Name": "Network Security Management",
546
546
  "Check_Summary": "Ensure the default security group of every VPC restricts all traffic"
547
547
  }
@@ -551,13 +551,13 @@
551
551
  ]
552
552
  },
553
553
  {
554
- "Id": "A.13.1",
554
+ "Id": "A.13.1.B",
555
555
  "Description": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 3389",
556
556
  "Name": "Network Security Management",
557
557
  "Attributes": [
558
558
  {
559
559
  "Category": "A.13 Communications Security",
560
- "Objetive_ID": "A.13.1",
560
+ "Objetive_ID": "A.13.1.B",
561
561
  "Objetive_Name": "Network Security Management",
562
562
  "Check_Summary": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 3389"
563
563
  }
@@ -567,13 +567,13 @@
567
567
  ]
568
568
  },
569
569
  {
570
- "Id": "A.13.1",
570
+ "Id": "A.13.1.C",
571
571
  "Description": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 22",
572
572
  "Name": "Network Security Management",
573
573
  "Attributes": [
574
574
  {
575
575
  "Category": "A.13 Communications Security",
576
- "Objetive_ID": "A.13.1",
576
+ "Objetive_ID": "A.13.1.C",
577
577
  "Objetive_Name": "Network Security Management",
578
578
  "Check_Summary": "Ensure no security groups allow ingress from 0.0.0.0/0 to port 22"
579
579
  }
@@ -583,13 +583,13 @@
583
583
  ]
584
584
  },
585
585
  {
586
- "Id": "A.13.1",
586
+ "Id": "A.13.1.D",
587
587
  "Description": "Ensure EBS snapshots are not publicly accessible",
588
588
  "Name": "Network Security Management",
589
589
  "Attributes": [
590
590
  {
591
591
  "Category": "A.13 Communications Security",
592
- "Objetive_ID": "A.13.1",
592
+ "Objetive_ID": "A.13.1.D",
593
593
  "Objetive_Name": "Network Security Management",
594
594
  "Check_Summary": "Ensure EBS snapshots are not publicly accessible"
595
595
  }
@@ -599,13 +599,13 @@
599
599
  ]
600
600
  },
601
601
  {
602
- "Id": "A.13.1",
602
+ "Id": "A.13.1.E",
603
603
  "Description": "Ensure SNS topics do not allow global send or subscribe",
604
604
  "Name": "Network Security Management",
605
605
  "Attributes": [
606
606
  {
607
607
  "Category": "A.13 Communications Security",
608
- "Objetive_ID": "A.13.1",
608
+ "Objetive_ID": "A.13.1.E",
609
609
  "Objetive_Name": "Network Security Management",
610
610
  "Check_Summary": "Ensure SNS topics do not allow global send or subscribe"
611
611
  }
@@ -615,13 +615,13 @@
615
615
  ]
616
616
  },
617
617
  {
618
- "Id": "A.13.1",
618
+ "Id": "A.13.1.F",
619
619
  "Description": "Ensure Redshift clusters do not have a public endpoint",
620
620
  "Name": "Network Security Management",
621
621
  "Attributes": [
622
622
  {
623
623
  "Category": "A.13 Communications Security",
624
- "Objetive_ID": "A.13.1",
624
+ "Objetive_ID": "A.13.1.F",
625
625
  "Objetive_Name": "Network Security Management",
626
626
  "Check_Summary": "Ensure Redshift clusters do not have a public endpoint"
627
627
  }
@@ -631,13 +631,13 @@
631
631
  ]
632
632
  },
633
633
  {
634
- "Id": "A.13.1",
634
+ "Id": "A.13.1.G",
635
635
  "Description": "Ensure RDS snapshots are not publicly accessible",
636
636
  "Name": "Network Security Management",
637
637
  "Attributes": [
638
638
  {
639
639
  "Category": "A.13 Communications Security",
640
- "Objetive_ID": "A.13.1",
640
+ "Objetive_ID": "A.13.1.G",
641
641
  "Objetive_Name": "Network Security Management",
642
642
  "Check_Summary": "Ensure RDS snapshots are not publicly accessible"
643
643
  }
@@ -647,13 +647,13 @@
647
647
  ]
648
648
  },
649
649
  {
650
- "Id": "A.13.1",
650
+ "Id": "A.13.1.H",
651
651
  "Description": "Ensure RDS instances are not accessible to the world.",
652
652
  "Name": "Network Security Management",
653
653
  "Attributes": [
654
654
  {
655
655
  "Category": "A.13 Communications Security",
656
- "Objetive_ID": "A.13.1",
656
+ "Objetive_ID": "A.13.1.H",
657
657
  "Objetive_Name": "Network Security Management",
658
658
  "Check_Summary": "Ensure RDS instances are not accessible to the world."
659
659
  }
@@ -663,13 +663,13 @@
663
663
  ]
664
664
  },
665
665
  {
666
- "Id": "A.9.2",
666
+ "Id": "A.9.2.A",
667
667
  "Description": "Ensure IAM password policy expires passwords within 90 days or less",
668
668
  "Name": "User Access Management",
669
669
  "Attributes": [
670
670
  {
671
671
  "Category": "A.9 Access Control",
672
- "Objetive_ID": "A.9.2",
672
+ "Objetive_ID": "A.9.2.A",
673
673
  "Objetive_Name": "User Access Management",
674
674
  "Check_Summary": "Ensure IAM password policy expires passwords within 90 days or less"
675
675
  }
@@ -679,13 +679,13 @@
679
679
  ]
680
680
  },
681
681
  {
682
- "Id": "A.9.2",
682
+ "Id": "A.9.2.B",
683
683
  "Description": "Ensure IAM password policy prevents password reuse",
684
684
  "Name": "User Access Management",
685
685
  "Attributes": [
686
686
  {
687
687
  "Category": "A.9 Access Control",
688
- "Objetive_ID": "A.9.2",
688
+ "Objetive_ID": "A.9.2.B",
689
689
  "Objetive_Name": "User Access Management",
690
690
  "Check_Summary": "Ensure IAM password policy prevents password reuse"
691
691
  }
@@ -695,13 +695,13 @@
695
695
  ]
696
696
  },
697
697
  {
698
- "Id": "A.9.2",
698
+ "Id": "A.9.2.C",
699
699
  "Description": "Ensure IAM password policy requires minimum length of 14 or greater",
700
700
  "Name": "User Access Management",
701
701
  "Attributes": [
702
702
  {
703
703
  "Category": "A.9 Access Control",
704
- "Objetive_ID": "A.9.2",
704
+ "Objetive_ID": "A.9.2.C",
705
705
  "Objetive_Name": "User Access Management",
706
706
  "Check_Summary": "Ensure IAM password policy requires minimum length of 14 or greater"
707
707
  }
@@ -711,13 +711,13 @@
711
711
  ]
712
712
  },
713
713
  {
714
- "Id": "A.9.2",
714
+ "Id": "A.9.2.D",
715
715
  "Description": "Ensure IAM password policy require at least one number",
716
716
  "Name": "User Access Management",
717
717
  "Attributes": [
718
718
  {
719
719
  "Category": "A.9 Access Control",
720
- "Objetive_ID": "A.9.2",
720
+ "Objetive_ID": "A.9.2.D",
721
721
  "Objetive_Name": "User Access Management",
722
722
  "Check_Summary": "Ensure IAM password policy require at least one number"
723
723
  }
@@ -727,13 +727,13 @@
727
727
  ]
728
728
  },
729
729
  {
730
- "Id": "A.9.2",
730
+ "Id": "A.9.2.E",
731
731
  "Description": "Ensure IAM password policy require at least one symbol",
732
732
  "Name": "User Access Management",
733
733
  "Attributes": [
734
734
  {
735
735
  "Category": "A.9 Access Control",
736
- "Objetive_ID": "A.9.2",
736
+ "Objetive_ID": "A.9.2.E",
737
737
  "Objetive_Name": "User Access Management",
738
738
  "Check_Summary": "Ensure IAM password policy require at least one symbol"
739
739
  }
@@ -743,13 +743,13 @@
743
743
  ]
744
744
  },
745
745
  {
746
- "Id": "A.9.2",
746
+ "Id": "A.9.2.F",
747
747
  "Description": "Ensure IAM password policy require at least one lowercase letter",
748
748
  "Name": "User Access Management",
749
749
  "Attributes": [
750
750
  {
751
751
  "Category": "A.9 Access Control",
752
- "Objetive_ID": "A.9.2",
752
+ "Objetive_ID": "A.9.2.F",
753
753
  "Objetive_Name": "User Access Management",
754
754
  "Check_Summary": "Ensure IAM password policy require at least one lowercase letter"
755
755
  }
@@ -759,13 +759,13 @@
759
759
  ]
760
760
  },
761
761
  {
762
- "Id": "A.9.2",
762
+ "Id": "A.9.2.G",
763
763
  "Description": "Ensure IAM password policy requires at least one uppercase letter",
764
764
  "Name": "User Access Management",
765
765
  "Attributes": [
766
766
  {
767
767
  "Category": "A.9 Access Control",
768
- "Objetive_ID": "A.9.2",
768
+ "Objetive_ID": "A.9.2.G",
769
769
  "Objetive_Name": "User Access Management",
770
770
  "Check_Summary": "Ensure IAM password policy requires at least one uppercase letter"
771
771
  }
@@ -775,13 +775,13 @@
775
775
  ]
776
776
  },
777
777
  {
778
- "Id": "A.9.2",
778
+ "Id": "A.9.2.H",
779
779
  "Description": "Avoid the use of the 'root' account",
780
780
  "Name": "User Access Management",
781
781
  "Attributes": [
782
782
  {
783
783
  "Category": "A.9 Access Control",
784
- "Objetive_ID": "A.9.2",
784
+ "Objetive_ID": "A.9.2.H",
785
785
  "Objetive_Name": "User Access Management",
786
786
  "Check_Summary": "Avoid the use of the 'root' account"
787
787
  }
@@ -791,13 +791,13 @@
791
791
  ]
792
792
  },
793
793
  {
794
- "Id": "A.9.2",
794
+ "Id": "A.9.2.I",
795
795
  "Description": "Ensure IAM policies are attached only to groups or roles",
796
796
  "Name": "User Access Management",
797
797
  "Attributes": [
798
798
  {
799
799
  "Category": "A.9 Access Control",
800
- "Objetive_ID": "A.9.2",
800
+ "Objetive_ID": "A.9.2.I",
801
801
  "Objetive_Name": "User Access Management",
802
802
  "Check_Summary": "Ensure IAM policies are attached only to groups or roles"
803
803
  }
@@ -807,13 +807,13 @@
807
807
  ]
808
808
  },
809
809
  {
810
- "Id": "A.9.2",
810
+ "Id": "A.9.2.J",
811
811
  "Description": "Ensure multi-factor authentication (MFA) is enabled for all IAM users that have console access",
812
812
  "Name": "User Access Management",
813
813
  "Attributes": [
814
814
  {
815
815
  "Category": "A.9 Access Control",
816
- "Objetive_ID": "A.9.2",
816
+ "Objetive_ID": "A.9.2.J",
817
817
  "Objetive_Name": "User Access Management",
818
818
  "Check_Summary": "Ensure multi-factor authentication (MFA) is enabled for all IAM users that have console access"
819
819
  }
@@ -823,13 +823,13 @@
823
823
  ]
824
824
  },
825
825
  {
826
- "Id": "A.9.2",
826
+ "Id": "A.9.2.K",
827
827
  "Description": "Ensure MFA is enabled for the 'root' account",
828
828
  "Name": "User Access Management",
829
829
  "Attributes": [
830
830
  {
831
831
  "Category": "A.9 Access Control",
832
- "Objetive_ID": "A.9.2",
832
+ "Objetive_ID": "A.9.2.K",
833
833
  "Objetive_Name": "User Access Management",
834
834
  "Check_Summary": "Ensure MFA is enabled for the 'root' account"
835
835
  }
@@ -839,13 +839,13 @@
839
839
  ]
840
840
  },
841
841
  {
842
- "Id": "A.9.2",
842
+ "Id": "A.9.2.L",
843
843
  "Description": "Ensure access keys are rotated every 90 days or less",
844
844
  "Name": "User Access Management",
845
845
  "Attributes": [
846
846
  {
847
847
  "Category": "A.9 Access Control",
848
- "Objetive_ID": "A.9.2",
848
+ "Objetive_ID": "A.9.2.L",
849
849
  "Objetive_Name": "User Access Management",
850
850
  "Check_Summary": "Ensure access keys are rotated every 90 days or less"
851
851
  }
@@ -855,13 +855,13 @@
855
855
  ]
856
856
  },
857
857
  {
858
- "Id": "A.9.2",
858
+ "Id": "A.9.2.M",
859
859
  "Description": "Ensure credentials unused for 90 days or greater are disabled",
860
860
  "Name": "User Access Management",
861
861
  "Attributes": [
862
862
  {
863
863
  "Category": "A.9 Access Control",
864
- "Objetive_ID": "A.9.2",
864
+ "Objetive_ID": "A.9.2.M",
865
865
  "Objetive_Name": "User Access Management",
866
866
  "Check_Summary": "Ensure credentials unused for 90 days or greater are disabled"
867
867
  }
@@ -872,13 +872,13 @@
872
872
  ]
873
873
  },
874
874
  {
875
- "Id": "A.9.2",
875
+ "Id": "A.9.2.N",
876
876
  "Description": "Ensure no root account access key exists",
877
877
  "Name": "User Access Management",
878
878
  "Attributes": [
879
879
  {
880
880
  "Category": "A.9 Access Control",
881
- "Objetive_ID": "A.9.2",
881
+ "Objetive_ID": "A.9.2.N",
882
882
  "Objetive_Name": "User Access Management",
883
883
  "Check_Summary": "Ensure no root account access key exists"
884
884
  }
@@ -888,13 +888,13 @@
888
888
  ]
889
889
  },
890
890
  {
891
- "Id": "A.9.3",
891
+ "Id": "A.9.3.A",
892
892
  "Description": "Ensure IAM password policy expires passwords within 90 days or less",
893
893
  "Name": "User Responsibilities",
894
894
  "Attributes": [
895
895
  {
896
896
  "Category": "A.9 Access Control",
897
- "Objetive_ID": "A.9.3",
897
+ "Objetive_ID": "A.9.3.A",
898
898
  "Objetive_Name": "User Responsibilities",
899
899
  "Check_Summary": "Ensure IAM password policy expires passwords within 90 days or less"
900
900
  }
@@ -904,13 +904,13 @@
904
904
  ]
905
905
  },
906
906
  {
907
- "Id": "A.9.3",
907
+ "Id": "A.9.3.B",
908
908
  "Description": "Ensure IAM password policy prevents password reuse",
909
909
  "Name": "User Responsibilities",
910
910
  "Attributes": [
911
911
  {
912
912
  "Category": "A.9 Access Control",
913
- "Objetive_ID": "A.9.3",
913
+ "Objetive_ID": "A.9.3.B",
914
914
  "Objetive_Name": "User Responsibilities",
915
915
  "Check_Summary": "Ensure IAM password policy prevents password reuse"
916
916
  }
@@ -920,13 +920,13 @@
920
920
  ]
921
921
  },
922
922
  {
923
- "Id": "A.9.3",
923
+ "Id": "A.9.3.C",
924
924
  "Description": "Ensure IAM password policy requires minimum length of 14 or greater",
925
925
  "Name": "User Responsibilities",
926
926
  "Attributes": [
927
927
  {
928
928
  "Category": "A.9 Access Control",
929
- "Objetive_ID": "A.9.3",
929
+ "Objetive_ID": "A.9.3.C",
930
930
  "Objetive_Name": "User Responsibilities",
931
931
  "Check_Summary": "Ensure IAM password policy requires minimum length of 14 or greater"
932
932
  }
@@ -936,13 +936,13 @@
936
936
  ]
937
937
  },
938
938
  {
939
- "Id": "A.9.3",
939
+ "Id": "A.9.3.D",
940
940
  "Description": "Ensure IAM password policy require at least one number",
941
941
  "Name": "User Responsibilities",
942
942
  "Attributes": [
943
943
  {
944
944
  "Category": "A.9 Access Control",
945
- "Objetive_ID": "A.9.3",
945
+ "Objetive_ID": "A.9.3.D",
946
946
  "Objetive_Name": "User Responsibilities",
947
947
  "Check_Summary": "Ensure IAM password policy require at least one number"
948
948
  }
@@ -952,13 +952,13 @@
952
952
  ]
953
953
  },
954
954
  {
955
- "Id": "A.9.3",
955
+ "Id": "A.9.3.E",
956
956
  "Description": "Ensure IAM password policy require at least one symbol",
957
957
  "Name": "User Responsibilities",
958
958
  "Attributes": [
959
959
  {
960
960
  "Category": "A.9 Access Control",
961
- "Objetive_ID": "A.9.3",
961
+ "Objetive_ID": "A.9.3.E",
962
962
  "Objetive_Name": "User Responsibilities",
963
963
  "Check_Summary": "Ensure IAM password policy require at least one symbol"
964
964
  }
@@ -968,13 +968,13 @@
968
968
  ]
969
969
  },
970
970
  {
971
- "Id": "A.9.3",
971
+ "Id": "A.9.3.F",
972
972
  "Description": "Ensure IAM password policy require at least one lowercase letter",
973
973
  "Name": "User Responsibilities",
974
974
  "Attributes": [
975
975
  {
976
976
  "Category": "A.9 Access Control",
977
- "Objetive_ID": "A.9.3",
977
+ "Objetive_ID": "A.9.3.F",
978
978
  "Objetive_Name": "User Responsibilities",
979
979
  "Check_Summary": "Ensure IAM password policy require at least one lowercase letter"
980
980
  }
@@ -984,13 +984,13 @@
984
984
  ]
985
985
  },
986
986
  {
987
- "Id": "A.9.3",
987
+ "Id": "A.9.3.G",
988
988
  "Description": "Ensure IAM password policy requires at least one uppercase letter",
989
989
  "Name": "User Responsibilities",
990
990
  "Attributes": [
991
991
  {
992
992
  "Category": "A.9 Access Control",
993
- "Objetive_ID": "A.9.3",
993
+ "Objetive_ID": "A.9.3.G",
994
994
  "Objetive_Name": "User Responsibilities",
995
995
  "Check_Summary": "Ensure IAM password policy requires at least one uppercase letter"
996
996
  }
@@ -1000,13 +1000,13 @@
1000
1000
  ]
1001
1001
  },
1002
1002
  {
1003
- "Id": "A.9.3",
1003
+ "Id": "A.9.3.H",
1004
1004
  "Description": "Ensure multi-factor authentication (MFA) is enabled for all IAM users that have console access",
1005
1005
  "Name": "User Responsibilities",
1006
1006
  "Attributes": [
1007
1007
  {
1008
1008
  "Category": "A.9 Access Control",
1009
- "Objetive_ID": "A.9.3",
1009
+ "Objetive_ID": "A.9.3.H",
1010
1010
  "Objetive_Name": "User Responsibilities",
1011
1011
  "Check_Summary": "Ensure multi-factor authentication (MFA) is enabled for all IAM users that have console access"
1012
1012
  }
@@ -1016,13 +1016,13 @@
1016
1016
  ]
1017
1017
  },
1018
1018
  {
1019
- "Id": "A.9.3",
1019
+ "Id": "A.9.3.I",
1020
1020
  "Description": "Ensure access keys are rotated every 90 days or less",
1021
1021
  "Name": "User Responsibilities",
1022
1022
  "Attributes": [
1023
1023
  {
1024
1024
  "Category": "A.9 Access Control",
1025
- "Objetive_ID": "A.9.3",
1025
+ "Objetive_ID": "A.9.3.I",
1026
1026
  "Objetive_Name": "User Responsibilities",
1027
1027
  "Check_Summary": "Ensure access keys are rotated every 90 days or less"
1028
1028
  }
@@ -1032,13 +1032,13 @@
1032
1032
  ]
1033
1033
  },
1034
1034
  {
1035
- "Id": "A.9.3",
1035
+ "Id": "A.9.3.J",
1036
1036
  "Description": "Ensure credentials unused for 90 days or greater are disabled",
1037
1037
  "Name": "User Responsibilities",
1038
1038
  "Attributes": [
1039
1039
  {
1040
1040
  "Category": "A.9 Access Control",
1041
- "Objetive_ID": "A.9.3",
1041
+ "Objetive_ID": "A.9.3.J",
1042
1042
  "Objetive_Name": "User Responsibilities",
1043
1043
  "Check_Summary": "Ensure credentials unused for 90 days or greater are disabled"
1044
1044
  }
@@ -1049,13 +1049,13 @@
1049
1049
  ]
1050
1050
  },
1051
1051
  {
1052
- "Id": "A.9.4",
1052
+ "Id": "A.9.4.A",
1053
1053
  "Description": "Ensure IAM password policy expires passwords within 90 days or less",
1054
1054
  "Name": "System and Application Access Control",
1055
1055
  "Attributes": [
1056
1056
  {
1057
1057
  "Category": "A.9 Access Control",
1058
- "Objetive_ID": "A.9.4",
1058
+ "Objetive_ID": "A.9.4.A",
1059
1059
  "Objetive_Name": "System and Application Access Control",
1060
1060
  "Check_Summary": "Ensure IAM password policy expires passwords within 90 days or less"
1061
1061
  }
@@ -1065,13 +1065,13 @@
1065
1065
  ]
1066
1066
  },
1067
1067
  {
1068
- "Id": "A.9.4",
1068
+ "Id": "A.9.4.B",
1069
1069
  "Description": "Ensure IAM password policy prevents password reuse",
1070
1070
  "Name": "System and Application Access Control",
1071
1071
  "Attributes": [
1072
1072
  {
1073
1073
  "Category": "A.9 Access Control",
1074
- "Objetive_ID": "A.9.4",
1074
+ "Objetive_ID": "A.9.4.B",
1075
1075
  "Objetive_Name": "System and Application Access Control",
1076
1076
  "Check_Summary": "Ensure IAM password policy prevents password reuse"
1077
1077
  }
@@ -1081,13 +1081,13 @@
1081
1081
  ]
1082
1082
  },
1083
1083
  {
1084
- "Id": "A.9.4",
1084
+ "Id": "A.9.4.C",
1085
1085
  "Description": "Ensure IAM password policy requires minimum length of 14 or greater",
1086
1086
  "Name": "System and Application Access Control",
1087
1087
  "Attributes": [
1088
1088
  {
1089
1089
  "Category": "A.9 Access Control",
1090
- "Objetive_ID": "A.9.4",
1090
+ "Objetive_ID": "A.9.4.C",
1091
1091
  "Objetive_Name": "System and Application Access Control",
1092
1092
  "Check_Summary": "Ensure IAM password policy requires minimum length of 14 or greater"
1093
1093
  }
@@ -1097,13 +1097,13 @@
1097
1097
  ]
1098
1098
  },
1099
1099
  {
1100
- "Id": "A.9.4",
1100
+ "Id": "A.9.4.D",
1101
1101
  "Description": "Ensure IAM password policy require at least one number",
1102
1102
  "Name": "System and Application Access Control",
1103
1103
  "Attributes": [
1104
1104
  {
1105
1105
  "Category": "A.9 Access Control",
1106
- "Objetive_ID": "A.9.4",
1106
+ "Objetive_ID": "A.9.4.D",
1107
1107
  "Objetive_Name": "System and Application Access Control",
1108
1108
  "Check_Summary": "Ensure IAM password policy require at least one number"
1109
1109
  }
@@ -1113,13 +1113,13 @@
1113
1113
  ]
1114
1114
  },
1115
1115
  {
1116
- "Id": "A.9.4",
1116
+ "Id": "A.9.4.E",
1117
1117
  "Description": "Ensure IAM password policy require at least one symbol",
1118
1118
  "Name": "System and Application Access Control",
1119
1119
  "Attributes": [
1120
1120
  {
1121
1121
  "Category": "A.9 Access Control",
1122
- "Objetive_ID": "A.9.4",
1122
+ "Objetive_ID": "A.9.4.E",
1123
1123
  "Objetive_Name": "System and Application Access Control",
1124
1124
  "Check_Summary": "Ensure IAM password policy require at least one symbol"
1125
1125
  }
@@ -1129,13 +1129,13 @@
1129
1129
  ]
1130
1130
  },
1131
1131
  {
1132
- "Id": "A.9.4",
1132
+ "Id": "A.9.4.F",
1133
1133
  "Description": "Ensure IAM password policy require at least one lowercase letter",
1134
1134
  "Name": "System and Application Access Control",
1135
1135
  "Attributes": [
1136
1136
  {
1137
1137
  "Category": "A.9 Access Control",
1138
- "Objetive_ID": "A.9.4",
1138
+ "Objetive_ID": "A.9.4.F",
1139
1139
  "Objetive_Name": "System and Application Access Control",
1140
1140
  "Check_Summary": "Ensure IAM password policy require at least one lowercase letter"
1141
1141
  }
@@ -1145,13 +1145,13 @@
1145
1145
  ]
1146
1146
  },
1147
1147
  {
1148
- "Id": "A.9.4",
1148
+ "Id": "A.9.4.G",
1149
1149
  "Description": "Ensure IAM password policy requires at least one uppercase letter",
1150
1150
  "Name": "System and Application Access Control",
1151
1151
  "Attributes": [
1152
1152
  {
1153
1153
  "Category": "A.9 Access Control",
1154
- "Objetive_ID": "A.9.4",
1154
+ "Objetive_ID": "A.9.4.G",
1155
1155
  "Objetive_Name": "System and Application Access Control",
1156
1156
  "Check_Summary": "Ensure IAM password policy requires at least one uppercase letter"
1157
1157
  }
@@ -1161,13 +1161,13 @@
1161
1161
  ]
1162
1162
  },
1163
1163
  {
1164
- "Id": "A.9.4",
1164
+ "Id": "A.9.4.H",
1165
1165
  "Description": "Avoid the use of the 'root' account",
1166
1166
  "Name": "System and Application Access Control",
1167
1167
  "Attributes": [
1168
1168
  {
1169
1169
  "Category": "A.9 Access Control",
1170
- "Objetive_ID": "A.9.4",
1170
+ "Objetive_ID": "A.9.4.H",
1171
1171
  "Objetive_Name": "System and Application Access Control",
1172
1172
  "Check_Summary": "Avoid the use of the 'root' account"
1173
1173
  }
@@ -1177,13 +1177,13 @@
1177
1177
  ]
1178
1178
  },
1179
1179
  {
1180
- "Id": "A.9.4",
1180
+ "Id": "A.9.4.I",
1181
1181
  "Description": "Ensure IAM policies are attached only to groups or roles",
1182
1182
  "Name": "System and Application Access Control",
1183
1183
  "Attributes": [
1184
1184
  {
1185
1185
  "Category": "A.9 Access Control",
1186
- "Objetive_ID": "A.9.4",
1186
+ "Objetive_ID": "A.9.4.I",
1187
1187
  "Objetive_Name": "System and Application Access Control",
1188
1188
  "Check_Summary": "Ensure IAM policies are attached only to groups or roles"
1189
1189
  }
@@ -1193,13 +1193,13 @@
1193
1193
  ]
1194
1194
  },
1195
1195
  {
1196
- "Id": "A.9.4",
1196
+ "Id": "A.9.4.J",
1197
1197
  "Description": "Ensure multi-factor authentication (MFA) is enabled for all IAM users that have console access",
1198
1198
  "Name": "System and Application Access Control",
1199
1199
  "Attributes": [
1200
1200
  {
1201
1201
  "Category": "A.9 Access Control",
1202
- "Objetive_ID": "A.9.4",
1202
+ "Objetive_ID": "A.9.4.J",
1203
1203
  "Objetive_Name": "System and Application Access Control",
1204
1204
  "Check_Summary": "Ensure multi-factor authentication (MFA) is enabled for all IAM users that have console access"
1205
1205
  }
@@ -1209,13 +1209,13 @@
1209
1209
  ]
1210
1210
  },
1211
1211
  {
1212
- "Id": "A.9.4",
1212
+ "Id": "A.9.4.K",
1213
1213
  "Description": "Ensure MFA is enabled for the 'root' account",
1214
1214
  "Name": "System and Application Access Control",
1215
1215
  "Attributes": [
1216
1216
  {
1217
1217
  "Category": "A.9 Access Control",
1218
- "Objetive_ID": "A.9.4",
1218
+ "Objetive_ID": "A.9.4.K",
1219
1219
  "Objetive_Name": "System and Application Access Control",
1220
1220
  "Check_Summary": "Ensure MFA is enabled for the 'root' account"
1221
1221
  }
@@ -1225,13 +1225,13 @@
1225
1225
  ]
1226
1226
  },
1227
1227
  {
1228
- "Id": "A.9.4",
1228
+ "Id": "A.9.4.L",
1229
1229
  "Description": "Ensure access keys are rotated every 90 days or less",
1230
1230
  "Name": "System and Application Access Control",
1231
1231
  "Attributes": [
1232
1232
  {
1233
1233
  "Category": "A.9 Access Control",
1234
- "Objetive_ID": "A.9.4",
1234
+ "Objetive_ID": "A.9.4.L",
1235
1235
  "Objetive_Name": "System and Application Access Control",
1236
1236
  "Check_Summary": "Ensure access keys are rotated every 90 days or less"
1237
1237
  }
@@ -1241,13 +1241,13 @@
1241
1241
  ]
1242
1242
  },
1243
1243
  {
1244
- "Id": "A.9.4",
1244
+ "Id": "A.9.4.M",
1245
1245
  "Description": "Ensure credentials unused for 90 days or greater are disabled",
1246
1246
  "Name": "System and Application Access Control",
1247
1247
  "Attributes": [
1248
1248
  {
1249
1249
  "Category": "A.9 Access Control",
1250
- "Objetive_ID": "A.9.4",
1250
+ "Objetive_ID": "A.9.4.M",
1251
1251
  "Objetive_Name": "System and Application Access Control",
1252
1252
  "Check_Summary": "Ensure credentials unused for 90 days or greater are disabled"
1253
1253
  }
@@ -1258,13 +1258,13 @@
1258
1258
  ]
1259
1259
  },
1260
1260
  {
1261
- "Id": "A.9.4",
1261
+ "Id": "A.9.4.N",
1262
1262
  "Description": "Ensure no root account access key exists",
1263
1263
  "Name": "System and Application Access Control",
1264
1264
  "Attributes": [
1265
1265
  {
1266
1266
  "Category": "A.9 Access Control",
1267
- "Objetive_ID": "A.9.4",
1267
+ "Objetive_ID": "A.9.4.N",
1268
1268
  "Objetive_Name": "System and Application Access Control",
1269
1269
  "Check_Summary": "Ensure no root account access key exists"
1270
1270
  }