{% if searchres %}
{{ searchres.vuln_applications | length + searchres.ctf_challenges | length + searchres.malware | length }} results for search '{{ query }}'
{% for res in searchres.vuln_applications %}
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 %}
ID: {{ res._id }}
Name: {{ res.name }}
{% if res.summary %} Summary: {{ res.summary }}
{% endif %} {% if res.author %} Author: {{ res.author }}
{% endif %} {% if res.creation_date %} Creation Date: {{ res.creation_date }}
{% endif %} {% if res.added_date %} Added Date: {{ res.added_date }}
{% endif %} {% if res.port %} Port: {{ res.port }}
{% endif %} {% if res.type %} Type: {{ res.type }}
{% endif %} {% if res.category %} Category: {{ res.category }}
{% endif %} {% if res.difficulty %} Difficulty: {{ res.difficulty }}
{% endif %} {% if res.points %} Points: {{ res.points}}
{% endif %} {% if res.walkthrough %} Walkthrough: {{ res.walkthrough }}
{% endif %} {% if res.flag %} Flag: {{ res.flag }}
{% endif %}
{% endfor %} {% for res in searchres.malware %}
ID: {{ res._id }}
Name: {{ res.name }}
{% if res.summary %} Summary: {{ res.summary }}
{% endif %} {% if res.platform %} Platform: {{ res.platform }}
{% endif %} {% if res.type %} Type: {{ res.type }}
{% endif %} {% if res.date_added %} Date added: {{ res.date_added }}
{% endif %}
{% endfor %} {% endif %}

Latest insertions into database


Vulnerable applications
{% if vuln_applications %} {% for application in vuln_applications %}
ID: {{ application._id }}
{% if application.exploitdb_id %} Exploitdb id: {{ application.exploitdb_id }}
{% endif %} Name: {{ application.application_name }}
{% if application.summary %} Summary: {{ application.summary }}
{% endif %} {% if application.type %} Type: {{ application.type }}
{% endif %} {% if application.platform %} Platform: {{ application.platform }}
{% endif %} {% if application.tag %} Tag: {{ application.tag }}
{% endif %} {% if application.cve %} CVE: {{ application.cve }}
{% endif %} {% if application.cve_summary %} CVE Summary: {{ application.cve_summary }}
{% endif %} {% if application.cwe %} CWE: {{ application.cwe }}
{% endif %} {% if application.impact %} Impact: {% for key, impact in application.impact %}
{{ key }}: {{ impact | e }} {% endfor %} {% endif %}
{% if application.vulnerable_configuration %} Vulnerable Configuration: {% for vc in application.vulnerable_configuration %} {{ vc | json_encode }}
{% endfor %} {% endif %} {% if application.file_path %} File Path: {{ application.file_path }}
{% endif %} {% if application.category %} Category: {{ application.category }}
{% endif %}
{% endfor %}

{% else %} No vulnerable applications currently in database
{% endif %}
CTF Challenges
{% if ctf_challenges %} {% for ctf_challenge in ctf_challenges %}
ID: {{ ctf_challenge._id }}
Name: {{ ctf_challenge.name }}
{% if ctf_challenge.summary %} Summary: {{ ctf_challenge.summary }}
{% endif %} {% if ctf_challenge.author %} Author: {{ ctf_challenge.author }}
{% endif %} {% if ctf_challenge.creation_date %} Creation Date: {{ ctf_challenge.creation_date }}
{% endif %} {% if ctf_challenge.added_date %} Added Date: {{ ctf_challenge.added_date }}
{% endif %} {% if ctf_challenge.port %} Port: {{ ctf_challenge.port }}
{% endif %} {% if ctf_challenge.type %} Type: {{ ctf_challenge.type }}
{% endif %} {% if ctf_challenge.category %} Category: {{ ctf_challenge.category }}
{% endif %} {% if ctf_challenge.difficulty %} Difficulty: {{ ctf_challenge.difficulty }}
{% endif %} {% if ctf_challenge.points %} Points: {{ ctf_challenge.points}}
{% endif %} {% if ctf_challenge.walkthrough %} Walkthrough: {{ ctf_challenge.walkthrough }}
{% endif %} {% if ctf_challenge.flag %} Flag: {{ ctf_challenge.flag }}
{% endif %}
{% endfor %}
{% else %} No CTF Challenges currently in database
{% endif %}
Malware
{% if malware %} {% for mw in malware %}
ID: {{ mw._id }}
Name: {{ mw.name }}
{% if mw.summary %} Summary: {{ mw.summary }}
{% endif %} {% if mw.platform %} Platform: {{ mw.platform }}
{% endif %} {% if mw.type %} Type: {{ mw.type }}
{% endif %} {% if mw.date_added %} Date added: {{ mw.date_added }}
{% endif %}
{% endfor %}
{% else %} No malware currently in database
{% endif %}