{% extends "layout.html" %} {% from 'domain_table.macro.html' import domain_table %}} {% from 'ruler.macro.html' import ruler %} {% import 'text.macro.html' as text %} {% block body %} {{ ruler() }} onion_info.html
{% if domain.server != '' %} {% endif %} {% if domain.powered_by != '' %} {% endif %} {% if domain.useful_404_scanned_at != NEVER %} {% endif %}
Status {{text.status_text(domain.status())}}
Created At {{domain.created_at}}
Visited At {% if domain.visited_at != NEVER %} {{domain.visited_at}} {% else %} Never {% endif %}
Last Seen {% if domain.last_alive != NEVER %} {{domain.last_alive}} {% else %} Never {% endif %}
Portscanned {% if domain.portscanned_at != NEVER %} {{domain.portscanned_at}} {% else %} Never {% endif %}
Language {% if language %} {% set n_lang = count(Domain.by_language(domain.language)) %} {{language}} {% if n_lang > 1 and domain.language!="en" %} [+{{n_lang-1}}] {% endif %} {% else %} Unknown {% endif %}
Server {{domain.server}}
X-Powered-By {{domain.powered_by}}
Useful 404 (Gen) {{ text.good_or_bad("Yes", "No", domain.useful_404, is_bold=True) }}
Useful 404 (PHP) {{ text.good_or_bad("Yes", "No", domain.useful_404_php, is_bold=True) }}
Useful 404 (Dir) {{ text.good_or_bad("Yes", "No", domain.useful_404_dir, is_bold=True) }}

Information for {{domain.host}}

{% if domain.title!='' %} {{domain.title}} {% else %} No title for this domain. {% endif %} [SITE] [JSON]

{% if domain.is_fake %} [FAKE] -- this domain is a clone of an onion listed in the /r/darknetmarkets superlist, or of a site that has been validated by the admin. {% endif %} {% if domain.is_genuine %} [GENUINE] -- this onion is listed as genuine in the /r/darknetmarkets superlist, or has been validated by the admin. {% endif %}

Open Ports:

{% set open_ports = domain.get_open_ports() %} {% if len(open_ports)==0 %} No open ports found. {% else %} {% endif %}

Interesting Paths:

{% if len(paths)==0 %} No interesting paths in database. {% else %} {% endif %}

Emails:

{% if len(emails)==0 %} No emails in database. {% else %} {% endif %}

Bitcoin Addresses:

{% if len(bitcoin_addresses)==0 %} No bitcoin addresses in database. {% else %} {% endif %}

SSH fingerprint

{% if not domain.ssh_fingerprint %} No SSH fingerprint in database. {% else %}
{{domain.ssh_fingerprint.fingerprint}}
{% if fp_count > 1 %}

{{fp_count-1}} other {{"domain has" if fp_count == 2 else "domains have"}} this fingerprint. [VIEW]

{% endif %} {% endif %}
{% if is_elasticsearch_enabled() %}

Clones

{% if not domain.clone_group %}

This site appears to have no clones.

{% else %} {% set n_clones = len(domain.clone_group.domains) %}

This site appears to have {{n_clones - 1}} clones*. [VIEW]

*Note that except for sites in the /r/darknetmarkets superlist, we cannot tell which "clone" was the original.

{% endif %}
{% endif %} {% if domain.description_json and isinstance(domain.description_json, dict) %}

/description.json

{% for key, value in domain.description_json.items() %} {% if isinstance(value, str) or isinstance(value, unicode) %} {% endif %} {% endfor %}
Key Value
{{key}}{{value}}
{% endif %} {% if len(domain.web_components) > 0 %}

WhatWeb Plugins

{% endif %}
{% endblock %}