{% load i18n %}
{{file.project.get_platform_display}} {% trans "Security Report" %}
{% trans "For Internal Purpose" %}
{% trans "Prepared For" %}: {{file.name}}

{% trans "Prepared by " %}{% if whitelabel.enabled and whitelabel.name %}{{ whitelabel.name }}{% trans ", powered by " %}{% endif %}{% trans "Appknox. Portions of this document and the templates used in its production are the property of " %}{% if whitelabel.enabled and whitelabel.name %}{{ whitelabel.name }}{% else %}{% trans "Appknox" %}{% endif %}{% trans " and cannot be copied without permission." %}

{% trans "While precautions have been taken in the preparation of this document, the publisher and the author(s) assume no responsibility for errors, omissions, or for damages resulting from the use of the information contained herein. Use of Appknox services does not guarantee the security of a system, or that intrusions will not occur." %}

{% trans "Application Details" %}
{% trans "Application Name" %}{{file.name}}
{% trans "Platform" %}{{file.project.get_platform_display}}
{% trans "Application Namespace" %}{{file.project.package_name}}
{% trans "Version" %}{{file.version}}
{% trans "Audit Date" %}{{ date }}
{% trans "Application SHA1 Hash" %}{{file.sha1hash}}
{% trans "Application MD5 Hash" %}{{file.md5hash}}

{% trans "Table of Contents" %}

{% for analysis in file.sorted_analyses %} {% if analysis.risk > RiskEnum.PASSED %}{% if analysis.vulnerability.non_compliant %}{% endif %} {% if analysis.vulnerability.compliant %}{% endif %} {% if analysis.vulnerability.business_implication %}{% endif %} {% if analysis.vulnerability.related_to %}{% endif %} {% endif %} {% endfor %}
{% trans "Report Summary" %}
{% trans "Audit Summary" %}
{% trans "Appknox Security Rating" %}
{{ analysis.vulnerability.name }}
{% trans "Noncompliant Code Example" %}
{% trans "Compliant Solution" %}
{% trans "Business Implication" %}
{% trans "Related Vulnerabilities" %}

{% trans "Report Summary" %}

{% if whitelabel.enabled and whitelabel.name %}{{ whitelabel.name }}{% trans ", powered by " %}{% endif %}{% trans "Appknox" %}{% if whitelabel.enabled and whitelabel.name %}{% trans "," %}{% endif %}{% trans " conducted a security assessment of the mobile application. This report contains all the findings during the automated auditing process. It also contains the process of discovering those vulnerabilities in the first place, and ways to remediate those issues." %}

{% trans "Audit Summary" %}
{% for analysis in file.sorted_analyses %}{% endfor %}
{{ analysis.vulnerability.name }} {% for type in analysis.vulnerability.get_types_display %} {{type}}{% endfor %}
{{ analysis.vulnerability.description | safe }}

{{analysis.cvss_base}}

{{ analysis.get_risk_display }} Risk
{% trans "Priority Level" %}{% trans "Number of failed test cases" %}
{% trans "Critical Risk" %}{{ file.risk_count_critical }}
{% trans "High Risk" %}{{ file.risk_count_high }}
{% trans "Medium Risk" %}{{ file.risk_count_medium }}
{% trans "Low Risk" %}{{ file.risk_count_low }}
{% trans "Appknox Security Rating" %}

{% trans "Appknox Security Rating:" %} {{ rating }}% {% trans "Unsecured" %}

{% for analysis in file.sorted_analyses %} {% if analysis.risk > RiskEnum.PASSED %}

{{ analysis.vulnerability.name }}

{{ analysis.vulnerability.intro | safe }}
{% trans "Risk Rating" %} : {{ analysis.get_risk_display }}
{% for type in analysis.vulnerability.get_types_display %} {{type}}{% endfor %}
{% if analysis.owasp_categories %}{% endif %} {% if analysis.show_cvss %}{% endif %}

{% trans "OWASP CATEGORY" %}

{% for metric in analysis.owasp_categories %}
{{ metric.code }}: {{ metric.title }}
{% endfor %}

{% trans "CVSS SCORE" %}

{{analysis.cvss_base}}

CVSSv3

{% trans "CVSS VECTOR" %}

    {% for metric in analysis.cvss_metrics_humanized %}
  • {{ metric.key }}: {{ metric.value }}
  • {% endfor %}
{% trans "Risk Assessment" %}

{{ analysis.vulnerability.description | safe }}

{% for finding in analysis.findings %} {% if finding.title %}

{{ finding.title | escape }}

{% endif %}
{{ finding.description | escape }}
{% endfor %}
{% if analysis.vulnerability.non_compliant %}
{% trans "Noncompliant Code Example" %}
{{ analysis.vulnerability.non_compliant | safe }}
{% endif %} {% if analysis.vulnerability.compliant %}
{% trans "Compliant Solution" %}
{{ analysis.vulnerability.compliant | safe }}
{% endif %} {% if analysis.vulnerability.business_implication %}
{% trans "Business Implication" %}
{{ analysis.vulnerability.business_implication | safe }}
{% endif %} {% if analysis.vulnerability.related_to %}{% endif %}
{% endif %} {% endfor %}

{% trans "References" %}

  1. Mobile Top 10 OWASP Categories | 2016
  2. Web Top 10 OWASP Categories | 2013