{% load analysis_tags %}

DNS

{% if analysis.network.dns %} {% for p in analysis.network.dns %} {% endfor %}
Name Response Post-Analysis Lookup
{{p.request}} {% for a in p.answers %} {% if a.type == "A" %} {% if ":" not in a.data %} {{a.type}} {{a.data|linebreaksbr}} {% else %} {{a.type}} {{a.data|linebreaksbr}} {% endif %} {% if not forloop.last %}
{% endif %} {% elif a.type == "CNAME" %} {{a.type}} {{a.data|linebreaksbr}} {% if not forloop.last %}
{% endif %} {% else %} {{a.type}} {{a.data|linebreaksbr}}{% if not forloop.last %}
{% endif %} {% endif %} {% endfor %}
{% if ":" not in domainlookups|get_item:p.request %} {{ domainlookups|get_item:p.request }} {% else %} {{ domainlookups|get_item:p.request }} {% endif %}
{% else %}

No domains contacted.

{% endif %}