{% extends "base.html" %} {% block title %}Scoreboard - {% if mode == 'software' %}TOP {{amount}} used software{% elif mode == 'block_level' %}TOP {{amount}} block level metrics{% elif mode == 'obfuscation' %}obfuscation metrics{% elif mode == 'obfuscator' %}TOP {{amount}} obfuscating software{% elif mode == 'avg_peers' %}TOP {{amount}} average peer count{% elif mode == 'command' %}TOP {{amount}} commands{% elif mode == 'error_code' %}TOP {{amount}} error codes{% elif mode == 'reference' %}TOP {{amount}} referencing instances{% elif mode == 'blocked' %}TOP {{amount}} deferated instances{% elif mode == 'blocker' %}TOP {{amount}} deferating instances{% endif %}{% endblock %} {% block header %} {% if mode == 'blocker' %}

Top {{amount}} defederating instances

{% elif mode == 'blocked' %}

Top {{amount}} defederated instances

{% elif mode == 'reference' %}

Top {{amount}} referencing instances

{% elif mode == 'software' %}

Top {{amount}} used software

{% elif mode == 'command' %}

TOP {{amount}} commands

{% elif mode == 'error_code' %}

TOP {{amount}} error codes

{% elif mode == 'avg_peers' %}

TOP {{amount}} average peer count

{% elif mode == 'obfuscator' %}

TOP {{amount}} obfuscating software

{% elif mode == 'obfuscation' %}

obfuscation metrics

{% elif mode == 'block_level' %}

TOP {{amount}} block levels

{% endif %} {% endblock %} {% block content %}
{% for entry in scores %} {% endfor %}
{% if mode in ('software', 'avg_peers', 'obfuscator') %}Software{% elif mode == 'obfuscation' %}obfuscation status{% elif mode == 'error_code' %}Error code{% else %}Instance{% endif %} {% if mode == 'reference' %}References{% elif mode == 'avg_peers' %}Average{% elif mode in('software', 'error_code', 'obfuscator', 'obfuscation', 'block_level') %}Total{% else %}Blocks{% endif %}
{{loop.index}} {% if mode in ('software', 'command', 'error_code', 'avg_peers', 'obfuscator', 'obfuscation', 'block_level') %} {{entry['domain']}} {% elif entry['domain'] == None %} - {% else %} {% with domain=entry['domain'] %} {% include "widgets/links.tpl" %} {% endwith %} {% endif %} {{entry['score']}}
{% endblock %} {% block footer %} {% if mode == 'error_code' %}

Please note to error codes:

{% elif mode == 'obfuscation' %}

Please note to obfuscation status:

{% endif %} Index / {{ super() }} {% endblock %}