chore(elb): Improve status in elbv2_insecure_ssl_ciphers (#3169)

This commit is contained in:
Fennerr
2023-12-11 12:04:37 +02:00
committed by GitHub
parent 1be52fab06
commit a7f8656e89

View File

@@ -33,7 +33,7 @@ class elbv2_insecure_ssl_ciphers(Check):
and listener.ssl_policy not in secure_ssl_policies
):
report.status = "FAIL"
report.status_extended = f"ELBv2 {lb.name} has listeners with insecure SSL protocols or ciphers."
report.status_extended = f"ELBv2 {lb.name} has listeners with insecure SSL protocols or ciphers ({listener.ssl_policy})."
findings.append(report)