{% extends "base.html" %} {% load event_tags %} {% load display_tags %} {% block content %}

{{ name }}

This simple search function will return results whose findings or finding templates title, URL, description, endpoints, tags, references, languages or technologies contain the search query and products whose name, tags or description contain the search query.

Advanced search operators: (Restrict results to a certain type) product:, engagement:, finding:, endpoint:, tag:, language: or technology:

{% if products %}
{% for product in products %} {% endfor %}
Name Description
{{ product.object.name }} {% for tag in product.object.tags %} {{ tag }} {% endfor %} {{ product.object.description|truncatechars:150|markdown_render }}
{% endif %} {% if findings %}
{% for finding in findings %} {% endfor %}
Severity Title Status Date Product Engagement Associated Test
{{ finding.object.severity_display }} {{ finding.object.title }} {% for tag in finding.object.tags %} {{ tag }} {% endfor %} {% if finding.object.under_review %}Under Review, {% endif %} {{ finding.object.status }} {% if finding.object.duplicate_finding.id %}, Original{% endif %} {{ finding.object.date }} {{ finding.object.test.engagement.product.name }} {% for tag in finding.object.test.engagement.product.tags %} {{ tag }} {% endfor %} {{ finding.object.test.engagement.name }} {% if finding.object.test.title is None %} {{finding.object.test.test_type}} {% else %} {{finding.object.test.title }} {% endif %}
{% endif %} {% if finding_templates %}
{% for finding_template in finding_templates %} {% endfor %}
Title Description
{{ finding_template.object.title }} {% for tag in finding_template.object.tags %} {{ tag }} {% endfor %} {{ finding_template.object.description }}
{% endif %} {% if engagements %}
{% for engagement in engagements %} {% endfor %}
Type Product Date Status
{{ engagement.object.name }} {% for tag in engagement.object.tags %} {{ tag }} {% endfor %} {{ engagement.object.product.name }} {% for tag in engagement.object.product.tags %} {{ tag }} {% endfor %} {{ engagement.object.target_start }} - {{ engagement.object.target_end }} {{ engagement.object.status }}
{% endif %} {% if tests %}
{% for test in tests %} {% endfor %}
Test Type Product Engagement Date Status
{{ test.object.test_type }} {% for tag in test.object.tags %} {{ tag }} {% endfor %} {{ test.object.engagement.product.name }} {% for tag in test.object.engagement.product.tags %} {{ tag }} {% endfor %} {{ test.object.engagement.name }} {% for tag in test.object.engagement.tags %} {{ tag }} {% endfor %} {{ test.object.engagement.target_start }} - {{ test.object.engagement.target_end }} {{ test.object.engagement.status }}
{% endif %} {% if endpoints %}
{% for e in endpoints %} {% endfor %}
Endpoint Product Open Findings
{{ e }} {% if e.tags %} {% for tag in e.tags %} {{ tag }} {% endfor %} {% endif %} {{ e.product.name }} {% for tag in e.product.tags %} {{ tag }} {% endfor %} {% if e.finding_count_endpoint > 0 %} {{ e.finding_count_endpoint }} {% else %} No Open, Active Findings {% endif %}
{% endif %} {% if languages %}
{% for lang in languages %} {% endfor %}
Language Product
{{ lang.language.language }} {{ lang.product.name }} {% for tag in lang.product.tags %} {{ tag }} {% endfor %}
{% endif %} {% if app_analysis %}
{% for app in app_analysis %} {% endfor %}
Technology Product
{{ app.name }} {{ app.product.name }} {% for tag in app.product.tags %} {{ tag }} {% endfor %}
{% endif %} {% if tagged_findings or tagged_finding_templates or tagged_products or tagged_tests or tagged_endpoints or tagged_engagements %}
{% if tagged_tests %} {% for test in tagged_tests %} {% endfor %} {% endif %} {% for finding in tagged_findings %} {% endfor %} {% for finding_template in tagged_finding_templates %} {% endfor %} {% for product in tagged_products %} {% endfor %} {% for endpoint in tagged_endpoints %} {% endfor %} {% for eng in tagged_engagements %} {% endfor %}
Item Type
{{ test }} {% for tag in test.tags %} {{ tag }} {% endfor %} Test
{{ finding.title }} Finding
{{ finding_template.title }} {% for tag in finding_template.tags %} {{ tag }} {% endfor %} Finding Template
{{ product.name }} {% for tag in product.tags %} {{ tag }} {% endfor %} Product
{{ endpoint }} {% for tag in endpoint.tags %} {{ tag }} {% endfor %} Endpoint
{{ eng }} {% for tag in eng.tags %} {{ tag }} {% endfor %} Engagement
{% endif %}




{% endblock %} {% block postscript %} {% endblock %}