{% if products %}
| Name |
Description |
{% for product in products %}
| {{ product.object.name }}
{% for tag in product.object.tags %}
{{ tag }}
{% endfor %}
|
{{ product.object.description|truncatechars:150|markdown_render }} |
{% endfor %}
{% endif %}
{% if findings %}
{% endif %}
{% if finding_templates %}
| Title |
Description |
{% for finding_template in finding_templates %}
| {{ finding_template.object.title }}
{% for tag in finding_template.object.tags %}
{{ tag }}
{% endfor %}
|
{{ finding_template.object.description }} |
{% endfor %}
{% endif %}
{% if engagements %}
{% endif %}
{% if tests %}
{% endif %}
{% if endpoints %}
{% endif %}
{% if languages %}
| Language |
Product |
{% for lang in languages %}
| {{ lang.language.language }} |
{{ lang.product.name }}
{% for tag in lang.product.tags %}
{{ tag }}
{% endfor %}
|
{% endfor %}
{% endif %}
{% if app_analysis %}
| Technology |
Product |
{% for app in app_analysis %}
| {{ app.name }} |
{{ app.product.name }}
{% for tag in app.product.tags %}
{{ tag }}
{% endfor %}
|
{% endfor %}
{% endif %}
{% if tagged_findings or tagged_finding_templates or tagged_products or tagged_tests or tagged_endpoints or tagged_engagements %}
| Item |
Type |
{% if tagged_tests %}
{% for test in tagged_tests %}
| {{ test }}
{% for tag in test.tags %}
{{ tag }}
{% endfor %}
|
Test |
{% endfor %}
{% endif %}
{% for finding in tagged_findings %}
| {{ finding.title }}
|
Finding |
{% endfor %}
{% for finding_template in tagged_finding_templates %}
| {{ finding_template.title }}
{% for tag in finding_template.tags %}
{{ tag }}
{% endfor %}
|
Finding Template |
{% endfor %}
{% for product in tagged_products %}
| {{ product.name }}
{% for tag in product.tags %}
{{ tag }}
{% endfor %}
|
Product |
{% endfor %}
{% for endpoint in tagged_endpoints %}
| {{ endpoint }}
{% for tag in endpoint.tags %}
{{ tag }}
{% endfor %}
|
Endpoint |
{% endfor %}
{% for eng in tagged_engagements %}
| {{ eng }}
{% for tag in eng.tags %}
{{ tag }}
{% endfor %}
|
Engagement |
{% endfor %}
{% endif %}