ID: {{ res._id }}
{% if res.exploitdb_id %}
Exploitdb id:
{{ res.exploitdb_id }}
{% endif %}
Name: {{ res.application_name }}
{% if res.summary %}
Summary:
{{ res.summary }}
{% endif %}
{% if res.type %}
Type:
{{ res.type }}
{% endif %}
{% if res.platform %}
Platform:
{{ res.platform }}
{% endif %}
{% if res.tag %}
Tag:
{{ res.tag }}
{% endif %}
{% if res.cve %}
CVE:
{{ res.cve }}
{% endif %}
{% if res.cve_summary %}
CVE Summary:
{{ res.cve_summary }}
{% endif %}
{% if res.cwe %}
CWE:
{{ res.cwe }}
{% endif %}
{% if res.impact %}
Impact:
{% for key, impact in res.impact %}
{{ key }}: {{ impact | e }}
{% endfor %}
{% endif %}
{% if res.vulnerable_configuration %}
Vulnerable Configuration:
{% for vc in res.vulnerable_configuration %}
{{ vc | json_encode }}
{% endfor %}
{% endif %}
{% endfor %}
{% for res in searchres.ctf_challenges %}