Network Analysis
{% if results.network %}
{% if results.network.hosts %}
IP Address |
{% for host in results.network.hosts %}
{{host}} |
{% endfor %}
{% endif %}
{% if results.network.domains %}
Domain |
IP Address |
{% for dns in results.network.domains %}
{{dns.domain}} |
{{dns.ip}} |
{% endfor %}
{% endif %}
{% if results.network.http %}
URL |
Data |
{% for http in results.network.http %}
{{http.uri}} |
{{http.data}} |
{% endfor %}
{% endif %}
{% if results.network.irc %}
Command |
Params |
Type |
{% for irc in results.network.irc %}
{{irc.command}} |
{{irc.params}} |
{{irc.type}} |
{% endfor %}
{% endif %}
{% if results.network.icmp %}
Source |
Destination |
ICMP Type |
Data |
{% for icmp in results.network.icmp %}
{{icmp.src}} |
{{icmp.dst}} |
{{icmp.type}} |
{{icmp.data}} |
{% endfor %}
{% endif %}
{% if not results.network.hosts and not results.network.domains and not results.network.http and not results.network.irc and not results.network.icmp %}
Nothing to display.
{% endif %}
{% else %}
Nothing to display.
{% endif %}