Text

{% if suspicious_text and suspicious_text|length > 0 %}
{% for rec in suspicious_text %} {% endfor %}
Source Indicators Tags Matches (Rules) Text Snippet
{{ (rec.type or 'page')|title }} {{ rec.rules|length if rec.rules else 0 }} {% set ns = namespace(tags=[]) %} {% if rec.rules %} {% for r in rec.rules %} {% if r.tags %} {% for t in r.tags %} {% if t not in ns.tags %} {% set ns.tags = ns.tags + [t] %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% endif %} {% if ns.tags and ns.tags|length > 0 %}
{% for t in ns.tags %} {{ t }} {% endfor %}
{% else %} None {% endif %}
{% if rec.rules and rec.rules|length > 0 %}
    {% for r in rec.rules %}
  • {{ r.name }} {% if r.severity %} {% set sev = r.severity|lower %} {{ r.severity|title }} {% endif %} {% if r.tags %} {% for t in r.tags %} {{ t }} {% endfor %} {% endif %} {% if r.description %} — {{ r.description }} {% endif %}
  • {% endfor %}
{% else %} N/A {% endif %}
{% if rec.content_snippet %}
View snippet ({{ rec.content_snippet|length }} chars)
{{ rec.content_snippet }}
{% else %} N/A {% endif %}
{% else %}

No text issues detected.

{% endif %}

Back to top