Evidence Collection
{% if not scanned %}
Device information
Name:
What type of device is this?
{% for a in ["Android", "iOS"] %}
{{ a }}
{% endfor %}
Submit
{% endif %} {% if scanned %}
Scan results for {{device_owner}}'s {{device}} device
Spyware apps:
{% if spyware %} {% for app in spyware %}
{{app["title"]}} (ID: {{app["appId"]}})
{% endfor %} {% else %}
None found
{% endif %}
Dual-use apps:
{% if dual_use %} {% for app in dual_use %}
{{app["title"]}} (ID: {{app["appId"]}})
{% endfor %} {% else %}
None found
{% endif %}
{% endif %}
{% if spyware %}
Spyware Apps
{% for app in spyware %}
{{app["title"]}}
Did you know this app was installed on your device?
{% for a in ["Yes", "No"] %}
{{ a }}
{% endfor %}
Did you install this app?
{% for a in ["Yes", "No"] %}
{{ a }}
{% endfor %}
If you did not install this app, do you know who did?
{% endfor %} {% endif %} {% if dual_use %}
Dual-Use Apps
{% for app in dual_use %}
{{app["title"]}}
Did you know this app was installed on your device?
{% for a in ["Yes", "No"] %}
{{ a }}
{% endfor %}
Did you install this app?
{% for a in ["Yes", "No"] %}
{{ a }}
{% endfor %}
If you did not install this app, do you know who did?
{% endfor %}
Submit
{% endif %}