Hosts
{% if analysis.network.hosts %}
Direct |
IP |
Country Name |
{% for host in analysis.network.hosts %}
{% if host.ip|slice:":7" != "192.168" %}
{% if "hostname" in host and host.hostname == "" %}
Y |
{% elif "hostname" in host %}
N |
{% else %}
N/A |
{% endif %}
{{host.ip}} |
{{host.country_name}} |
{% endif %}
{% endfor %}
{% else %}
No hosts contacted.
{% endif %}