{% extends "base.html" %} {% block content %}

{% csrf_token %}

For details on how to perform searches, get some help.

For MD5, SHA1, SHA256 and SHA512 no prefix is needed.

Prefix Description
name: File name pattern
type: File type/format
ssdeep: Fuzzy hash
crc32: CRC32 hash
imphash: Search for PE Imphash
file: Open files matching the pattern
key: Open registry keys matching the pattern
mutex: Open mutexes matching the pattern
ip: Contact the specified IP address
domain: Contact the specified domain
url: Search for Cuckoo Sandbox URL analysis
signature: Search for Cuckoo Sandbox signatures
{% if term %}

Term {{term}}

{% endif %} {% if analyses != None %} {% if analyses|length > 0 %}

Search Results

{% for analysis in analyses %} {% endfor %}
Timestamp Category Target
{% if analysis.status == "reported" %} {{analysis.completed_on}} {% else %} {{analysis.added_on}} (added on) {% endif %} {{analysis.category|upper}} {% if analysis.category == "url" %} {{analysis.target}} {% else %} {{analysis.sample.md5}} {% endif %}
{% else %}
No results found.
{% endif %} {% else %} {% if error %}
{{error}}
{% endif %} {% endif %} {% endblock %}