{% extends "base/base.html"%} {% load i18n %} {% block content %} {% load static %} {% if report %} {% if request.user.is_superuser %}
/api/report/{{ report.id }}/
{% trans "Prefix in storage:" %}
{{ report.bucket }}
{% blocktrans trimmed count counter=report.found_trackers.count %} We have found code signature of the following tracker in the application: {% plural %} We have found code signature of the following trackers in the application: {% endblocktrans %}
{% for t in report.trackers %} {% endfor %} {% else %}
{% trans "We have not found code signature of any tracker we know in the application." %}
{% trans "The application could contain tracker(s) we do not know yet." %}
{% blocktrans trimmed count counter=report.application.permission_set.count %} We have found the following permission in the application: {% plural %} We have found the following permissions in the application: {% endblocktrans %}
{% for perm in report.application.permissions %}
{% if perm.group_icon %}
{% autoescape off %}{{ perm.group_icon }}{% endautoescape %}
{% else %}
{% endif %}
{% if perm.severity == 'Special' or perm.severity == 'Dangerous' %}
{% endif %}
{{ perm.short_name }}
{% if perm.label %}
{{ perm.label }}
{% endif %}
{% blocktrans trimmed %}
The icon indicates a 'Dangerous' or 'Special' level according to Google's protection levels.
{% endblocktrans %}
{% trans "This application doesn't require any permissions." %}
{% endif %} {% trans "Permissions are actions the application can do on your phone." %} {% trans "Learn more" %}...{% trans "Fingerprint:" %} {{ c.fingerprint }}
{% trans "Issuer:" %} {{ c.issuer }}
{% trans "Subject:" %} {{ c.subject }}
{% trans "Serial:" %} {{ c.serial_number }}
{% endfor %} {% else %} {% trans "No signatures found OR x509 certificate does not comply the RFC." %} {% endif %}