{% macro print_lint_issues(lints) %} {% for issue in lints %} {{ issue['certificate_id'] }} {{ issue['not_before_date'] }} {{ issue['not_after_date'] }} {{ issue['subject_cn'] }} {{ issue['onecrl_revoked'] }} {{ issue['google_revoked'] }} {{ issue['microsoft_revoked'] }} {{ issue['sha256_fingerprint'] }} {% endfor %} {%- endmacro %} CA Misissuance Checker
{% for issuer, issues in issuers.items() %}
Issuer Name: {{ issues[0]['issuer_cn'] }}
Linter: {{issues[0]['linter']}}
Issue: {{ issues[0]['issue_text'] }}

{{ issues|length }} certificates with this lint issue under this CA.

{{ print_lint_issues(issues) }}
Cert ID Not Before Not After Subject CN OneCRL Revoked Google Revoked Microsoft Revoked SHA-256 fingerprint
{% endfor %}