Riservato
Valutazione della Sicurezza Informatica
{{ project.project_type | upper }}
TEST DI PENETRAZIONE
{{ project.project_name }}
Cliente
{{ project.customer_name }}
Revisore
{{ current_user.first_name }} {{ current_user.last_name }}
Periodo di test
{{ project.start_date }} – {{ project.end_date }}
Data del rapporto
{{ (metadata.generated_at or '')[:10] }}
Lingua
{{ (project.language or 'IT') | upper }}
Stato
Finale
{% if current_user.company %}
{{ current_user.company.company_name }}
{% if current_user.company.company_email %}
{{ current_user.company.company_email }}
{% endif %} {% endif %}
{% if generated_by_text %}
{{ generated_by_text }}
{% endif %}

Sommario Esecutivo

{% set counts = {'Critical': 0, 'High': 0, 'Medium': 0, 'Low': 0, 'Informational': 0} %} {% for v in vulnerabilities %} {% if v.severity in counts %}{% set _ = counts.update({v.severity: counts[v.severity] + 1}) %}{% endif %} {% endfor %}
{{ counts['Critical'] }}
Critical
{{ counts['High'] }}
High
{{ counts['Medium'] }}
Medium
{{ counts['Low'] }}
Low
{{ counts['Informational'] }}
Info
Progetto {{ project.project_name }}
Cliente {{ customer.company_name or project.customer_name }}
{% if customer_contacts %}
{{ 'Contatti' if customer_contacts | length > 1 else 'Contatto' }} {% for c in customer_contacts %}
{{ c.name }} {% if c.email %} — {{ c.email }}{% endif %} {% if c.phone %} — {{ c.phone }}{% endif %}
{% endfor %}
{% endif %}
Tipo di valutazione {{ project.project_type }}
Periodo di test {{ project.start_date }} – {{ project.end_date }}
Revisore principale {{ current_user.first_name }} {{ current_user.last_name }}
{% if project.scope %}
Ambito {% set scope_lines = project.scope.split('\n') | reject('equalto', '') | list %} {% if scope_lines | length > 1 %}
    {% for line in scope_lines %}
  • {{ line }}
  • {% endfor %}
{% else %} {{ project.scope }} {% endif %}
{% endif %} {% if project.test_users %}
Utenti di test {% set user_lines = project.test_users.split('\n') | reject('equalto', '') | list %} {% if user_lines | length > 1 %}
    {% for line in user_lines %}
  • {{ line }}
  • {% endfor %}
{% else %} {{ project.test_users }} {% endif %}
{% endif %}
{% if vulnerabilities %}

Riepilogo delle Vulnerabilità

{% for v in vulnerabilities %} {% endfor %}
Titolo Gravità CVSS OWASP Componente interessato
{{ v.title }} {{ 'Info' if v.severity == 'Informational' else v.severity }} {{ v.cvss_score }} {{ v.owasp if v.owasp else 'N/A' }} {% set ac_lines = (v.affected_component or '').split('\n') | reject('equalto', '') | list %}{% for line in ac_lines %}{{ line }}{% if not loop.last %}
{% endif %}{% endfor %}

Vulnerabilità Dettagliate

{% for v in vulnerabilities %}
{{ loop.index }}. {{ v.title }} {{ v.severity }}
{% if v.cvss_score %}
Punteggio CVSS
{{ v.cvss_score }}
{% if v.cvss_vector %}
{{ v.cvss_vector }}
{% endif %}
{% endif %}
OWASP
{{ v.owasp if v.owasp else 'N/A' }}
{% if v.affected_component %}
Componente interessato
{% set ac_lines = v.affected_component.split('\n') | reject('equalto', '') | list %}{% if ac_lines | length > 1 %}
    {% for line in ac_lines %}
  • {{ line }}
  • {% endfor %}
{% else %}{{ v.affected_component }}{% endif %}
{% endif %} {% if v.references %}
Riferimenti
{{ v.references }}
{% endif %}
{% if v.description_html %}
Descrizione
{{ v.description_html }}
{% endif %} {% if v.impact_html %}
Impatto
{{ v.impact_html }}
{% endif %} {% if v.evidence_html %}
Evidenza
{{ v.evidence_html }}
{% endif %} {% if v.recommendation_html %}
Raccomandazione
{{ v.recommendation_html }}
{% endif %} {% if v.short_recommendation_html %}
Raccomandazione breve
{{ v.short_recommendation_html }}
{% endif %} {% if v.short_description_html %}
Breve descrizione
{{ v.short_description_html }}
{% endif %} {% if v.remark_html %}
Nota
{{ v.remark_html }}
{% endif %}
{% endfor %}
{% else %}

Nessuna vulnerabilità registrata per questo progetto.

{% endif %}

Appendice – Metadati del rapporto

Informazioni sul revisore

Nome {{ current_user.first_name }} {{ current_user.last_name }}
E-mail {{ current_user.email }}
Telefono {{ current_user.phone }}
{% if current_user.company %}
Azienda {{ current_user.company.company_name }}
Indirizzo {{ current_user.company.company_address }}, {{ current_user.company.company_postalcode }} {{ current_user.company.company_city }}, {{ current_user.company.company_country }}
E-mail azienda {{ current_user.company.company_email }}
Partita IVA {{ current_user.company.company_vat }}
{% endif %}

Informazioni sul cliente

Azienda {{ customer.company_name }}
Lingua predefinita {{ customer.default_language }}
Versione CVSS {{ customer.cvss_version }}