All Fields Test Export

Generated: {{ metadata.generated_at }}

User

Email {{ current_user.email }}
First name {{ current_user.first_name }}
Last name {{ current_user.last_name }}
Phone {{ current_user.phone }}
{% if current_user.company %}
Company {{ current_user.company.company_name }}
Company Address {{ current_user.company.company_address }}
Company City {{ current_user.company.company_city }}
Company Postal code {{ current_user.company.company_postalcode }}
Company Country {{ current_user.company.company_country }}
Company VAT ID {{ current_user.company.company_vat }}
Company code {{ current_user.company.company_code }}
Company Email {{ current_user.company.company_email }}
Company Phone {{ current_user.company.company_phone }}
Company Contact {{ current_user.company.company_contact }}
Company VAT Applicable {{ current_user.company.company_vat_applicable }}
Company VAT % {{ current_user.company.company_vat_percent }}
{% else %}
Company None
{% endif %}

Customer

ID {{ customer.id }}
Name {{ customer.company_name }}
Department {{ customer.department }}
Street {{ customer.street }}
Postal code {{ customer.postalcode }}
City {{ customer.city }}
Country {{ customer.country }}
Company code / Identifier {{ customer.siren }}
VAT {{ customer.vat }}
Primary contact {{ customer.contact }}
Email {{ customer.email }}
Phone {{ customer.phone }}
Hourly rate {{ customer.hourly_rate }}
Default language {{ customer.default_language }}
Default template {{ customer.default_template }}
Default bill template {{ customer.default_bill_template }}
CVSS version {{ customer.cvss_version }}
Created at {{ customer.created_at }}
Updated at {{ customer.updated_at }}
{% if customer.custom_fields_list %}
Custom fields
{% for cf in customer.custom_fields_list %}
{{ cf.label }} {{ cf.value or '' }} {{ cf.type }}
{% endfor %} {% endif %}

Selected customer contact

{% if customer_contact and (customer_contact.name or customer_contact.email or customer_contact.phone) %}
Contact ID {{ customer_contact.id }}
Name {{ customer_contact.name }}
Email {{ customer_contact.email }}
Phone {{ customer_contact.phone }}
Created at {{ customer_contact.created_at }}
Updated at {{ customer_contact.updated_at }}
{% else %}
Project contact None
{% endif %}
{% if customer_contacts and customer_contacts | length > 1 %}

All customer contacts

{% for c in customer_contacts %} {% endfor %}
NameEmailPhone
{{ c.name }}{{ c.email }}{{ c.phone }}
{% endif %}

Project

ID {{ project.id }}
Project name {{ project.project_name }}
Customer ID {{ project.customer_id }}
Customer {{ project.customer_name }}
Customer contact ID {{ project.customer_contact_id }}
Type {{ project.project_type }}
Status {{ project.status }}
Language {{ project.language }}
CVSS version {{ project.cvss_version }}
Start date {{ project.start_date }}
End date {{ project.end_date }}
Number of days {{ project.num_days }}
Hours worked {{ project.hours_worked }}
Hourly rate {{ project.hourly_rate }}
Total price {{ project.total_price }}
Template {{ project.default_template or project.template }}
Creation date {{ project.creation_date }}
Folder name {{ project.folder_name }}
Scope {{ project.scope }}
Test users {{ project.test_users }}
Notes {{ project.notes }}
Created at {{ project.created_at }}
Updated at {{ project.updated_at }}
{% if project.custom_fields_list %}
Custom fields
{% for cf in project.custom_fields_list %}
{{ cf.label }} {{ cf.value or '' }} {{ cf.type }}
{% endfor %} {% endif %}

Vulnerabilities

{% if vulnerabilities %} {% for v in vulnerabilities %} {% endfor %}
# Title Severity CVSS Type OWASP Affected
{{ loop.index }} {{ v.title }} {{ v.severity }} {{ v.cvss_score }} ({{ v.cvss_vector }}) {{ v.type }} {{ v.owasp }} {% set ac_lines = (v.affected_component or '').split('\n') | reject('equalto', '') | list %}{% for line in ac_lines %}{{ line }}{% if not loop.last %}
{% endif %}{% endfor %}
{% for v in vulnerabilities %}

{{ loop.index }}. {{ v.title }} [{{ v.severity }}]

State {{ v.state }}
CVSS {{ v.cvss_score }} ({{ v.cvss_vector }})
Type {{ v.type }}
OWASP {{ v.owasp }}
Affected component {% set ac_lines = (v.affected_component or '').split('\n') | reject('equalto', '') | list %} {% if ac_lines | length > 1 %}
    {% for line in ac_lines %}
  • {{ line }}
  • {% endfor %}
{% else %} {{ v.affected_component }} {% endif %}
Hosts {{ v.hosts | join(', ') }}
References {{ v.references }}

Short Description

{{ v.short_description | e }}

Description

{{ v.description | e }}

Impact

{{ v.impact | e }}

Evidence

{{ v.evidence | e }}

Recommendation

{{ v.recommendation | e }}

Short Recommendation

{{ v.short_recommendation | e }}

Remark

{{ v.remark | e }}
{% if v.custom_fields %}

Custom fields

{% for cf in v.custom_fields %}
{{ cf.label }} {{ cf.value or '' }} {{ cf.type }}
{% endfor %} {% endif %}
{% endfor %} {% else %}

No vulnerabilities found.

{% endif %}