mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 23:05:05 +00:00
30 lines
1.3 KiB
Python
30 lines
1.3 KiB
Python
from prowler.lib.check.models import Check, Check_Report_AWS
|
|
from prowler.providers.aws.services.securityhub.securityhub_client import (
|
|
securityhub_client,
|
|
)
|
|
|
|
|
|
class securityhub_enabled(Check):
|
|
def execute(self):
|
|
findings = []
|
|
for securityhub in securityhub_client.securityhubs:
|
|
report = Check_Report_AWS(self.metadata())
|
|
report.region = securityhub.region
|
|
if securityhub.status == "ACTIVE":
|
|
report.status = "PASS"
|
|
if securityhub.standards:
|
|
report.status_extended = f"Security Hub is enabled with standards: {securityhub.standards}"
|
|
elif securityhub.integrations:
|
|
report.status_extended = f"Security Hub is enabled without standards but with integrations: {securityhub.integrations}"
|
|
else:
|
|
report.status = "FAIL"
|
|
report.status_extended = "Security Hub is enabled but without any standard or integration"
|
|
else:
|
|
report.status = "FAIL"
|
|
report.status_extended = "Security Hub is not enabled"
|
|
report.resource_id = securityhub.id
|
|
report.resource_arn = securityhub.arn
|
|
findings.append(report)
|
|
|
|
return findings
|