Analysis report summary
{% if results.target %}
{% if results.target.category == "file" %}
File info
- name: {{ results.target.file.name }}
- type: {{ results.target.file.type }}
- size: {{ results.target.file.size }} bytes
{% elif results.target.category == "archive" %}
Archive's file info
- name: {{ results.target.file.name }}
- type: {{ results.target.file.type }}
- size: {{ results.target.file.size }} bytes
{% endif %}
{% if results.target.category == "file" or results.target.category == "archive" %}
Checksums
- SHA1 {{ results.target.file.sha1 }}
- MD5 {{ results.target.file.md5 }}
{% endif %}
{% endif %}
{% if screenshots %}
{% for shot in screenshots %}
{% endfor %}
{% endif %}
{% if results.procmemory %}
{% if results.procmemory[0].urls %}
- URLs found in process memory
{% for url in results.procmemory[0].urls %}
- {{ url }}
{% endfor %}
{% endif %}
{% endif %}
{% if results.network %}
{% if results.network.dns or results.network.hosts %}
{% if results.network.dns %}
Type |
Name |
Response |
Post-analysis lookup |
{% for p in results.network.dns %}
{{ p.type }} |
{{ p.request }} |
{% if "answers" in p and p.answers %}
{{ p.answers|length }} |
{% else %}
Empty |
{% endif %}
- |
{% endfor %}
{% endif %}
{% if results.network.hosts %}
IP Address |
{% for host in results.network.hosts %}
{{ host }} |
{% endfor %}
{% endif %}
{% endif %}
{% endif %}