{# DO NOT AUTO INDENT #} {% extends 'base/base.html' %} {% load static %} {% load custom_tags %} {% block title %} Customize Report {% endblock title %} {% block custom_js_css_link %} {% endblock custom_js_css_link %} {% block breadcrumb_title %} {% endblock breadcrumb_title %} {% block page_title %} reNgine PDF Report Settings {% endblock page_title %} {% block main_content %}

Customize Report

reNgine allows you to generate PDF report. PDF reports are fully customizable. While downloading PDF Report, you can choose whether to download Vulnerability Report or Reconnaissance Report or both.
This section allows you to customize the report, such as colors, and sections to include in the report.

{% csrf_token %}

Color

Primary Color
(Primary Color is the color used for the Main Title, Footer Background and Page Counters.)
{{form.primary_color}}
Secondary Color
(Secondary color is currently being used for cover background.)
{{form.secondary_color}}

Report Generated by

{{form.company_name}}
{{form.company_address}}
{{form.company_website}}
{{form.company_email}}

Show Footer Text?

{{form.show_footer}}

This could be copyright text, or year of generation and the placement for footer text is bottom left.

{{form.footer_text}}

Show reNgine Banner/Credits?

{{form.show_rengine_banner}}

If turned on, generated report will contain 'Generated by reNgine'.

Show Executive Summary?

{{form.show_executive_summary}}

If turned on, reNgine will include Executive Summary in the report. You can customize the executive summary section.
Please note that, the Executive Summary section will appear before quick summary.

You can customize the executive summary and methodology template using markdown. Replace the below syntax wherever you require. Curly braces are must!

Executive Summary Syntax

  • {scan_date} Target Scan Date Ex. 25 June, 2020 .
  • {company_name} Company which performed Vulnerability/Reconnaissance Audit.
  • {target_name} Target Domain Name.
  • {target_description} Target Description.
  • {subdomain_count} Total number of subdomains discovered.
  • {vulnerability_count} Total number of Vulnerabilities identified.
  • {critical_count} Total number of Critical Severity Vulnerabilities identified.
  • {high_count} Total number of High Severity Vulnerabilities identified.
  • {medium_count} Total number of Medium Severity Vulnerabilities identified.
  • {low_count} Total number of Low Severity Vulnerabilities identified.
  • {info_count} Total number of Informational Vulnerabilities identified.
  • {unknown_count} Total number of Vulnerabilities with Unknown Severity identified.
{{form.executive_summary_description}}
{% endblock main_content %} {% block page_level_script %} {% endblock page_level_script %}