]> git.mxchange.org Git - fba.git/blob - templates/views/scoreboard.html
043634a1d8df95fc3e390c53eb1124891a3e3d26
[fba.git] / templates / views / scoreboard.html
1 {% extends "base.html" %}
2
3 {% block title %}Scoreboard - {% if mode == 'software' %}TOP {{amount}} used software{% elif mode == 'detection_mode' %}Detection mode statistics{% elif mode == 'block_level' %}TOP {{amount}} block level statistics{% elif mode == 'obfuscation' %}Obfuscation statistics{% 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 %}
4
5 {% block header %}
6     {% if mode == 'blocker' %}
7         <h1>Top {{amount}} defederating instances</h1>
8     {% elif mode == 'blocked' %}
9         <h1>Top {{amount}} defederated instances</h1>
10     {% elif mode == 'reference' %}
11         <h1>Top {{amount}} referencing instances</h1>
12     {% elif mode == 'software' %}
13         <h1>Top {{amount}} used software</h1>
14     {% elif mode == 'command' %}
15         <h1>TOP {{amount}} commands</h1>
16     {% elif mode == 'error_code' %}
17         <h1>TOP {{amount}} error codes</h1>
18     {% elif mode == 'detection_mode' %}
19         <h1>Detection mode statistics</h1>
20     {% elif mode == 'avg_peers' %}
21         <h1>TOP {{amount}} average peer count</h1>
22     {% elif mode == 'obfuscator' %}
23         <h1>TOP {{amount}} obfuscating software</h1>
24     {% elif mode == 'obfuscation' %}
25         <h1>Obfuscation statistics</h1>
26     {% elif mode == 'block_level' %}
27         <h1>TOP {{amount}} block levels</h1>
28     {% else %}
29         <h1 style="color: red">mode={{mode}} not supported</h1>
30     {% endif %}
31 {% endblock %}
32
33 {% block content %}
34     <div class="scoreboard">
35         <table class="table-with-rows">
36             <thead>
37                 <th>№</th>
38                 <th>{% if mode in ('software', 'avg_peers', 'obfuscator') %}Software{% elif mode == 'obfuscation' %}Obfuscation status{% elif mode == 'detection_mode' %}Detection mode{% elif mode == 'error_code' %}Error code{% else %}Instance{% endif %}</th>
39                 <th>{% if mode == 'reference' %}References{% elif mode == 'avg_peers' %}Average{% elif mode in('software', 'error_code', 'obfuscator', 'obfuscation', 'block_level', 'detection_mode') %}Total{% else %}Blocks{% endif %}</th>
40             </thead>
41
42             <tbody>
43             {% for entry in scores %}
44                 <tr>
45                     <td>{{loop.index}}</td>
46                     <td>
47                         {% if mode in ('error_code', 'obfuscation') %}
48                             {{entry['domain']}}
49                         {% elif mode == 'block_level' %}
50                             <a href="top?mode={{mode}}&amp;value={{entry['domain']}}&amp;amount=50">{{entry['domain']}}</a>
51                         {% elif mode in ('avg_peers', 'obfuscator') %}
52                             <a href="list?mode=software&amp;value={{entry['domain']}}&amp;amount=50">{{entry['domain']}}</a>
53                         {% elif mode in ('software', 'detection_mode', 'command') %}
54                             <a href="list?mode={{mode}}&amp;value={{entry['domain']}}&amp;amount=50">{{entry['domain']}}</a>
55                         {% elif entry['domain'] == None %}
56                             -
57                         {% else %}
58                             {% with domain=entry['domain'] %}
59                             {% include "widgets/links.html" %}
60                             {% endwith %}
61                         {% endif %}
62                     </td>
63                     <td>{{entry['score']}}</td>
64                 </tr>
65             {% endfor %}
66             </tbody>
67         </table>
68     </div>
69 {% endblock %}
70
71 {% block footer %}
72     {% if mode == 'error_code' %}
73         <div class="notice">
74             <h3>Error codes:</h3>
75             <ul>
76                 <li>Error code 999 is fake and covers a lot of reasons why the domain/instance is not reachable. Mostly that the domain is not resolvable or the server refused connection.</li>
77             </ul>
78         </div>
79     {% elif mode == 'detection_mode' %}
80         <div class="notice">
81             <h3>Detection modes:</h3>
82             <div>
83                 Detection is done in following order:
84             </div>
85             <ol>
86                 <li><b>AUTO_DISCOVERY</b>: <code>/.well-known/nodeinfo</code> was reachable and software type was found in nodeinfo response</li>
87                 <li><b>STATIC_CHECK</b>: Node information was found by probing for well-known URLs</li>
88                 <li><b>GENERATOR</b>: Meta data <code>generator</code> was found in HTML code</li>
89                 <li><b>PLATFORM</b>: Meta data <code>og:platform</code> was found in HTML code</li>
90                 <li><b>SITE_NAME</b>: Meta data <code>og:site_name</code> was found in HTML code</li>
91                 <li><b>None</b>: the instance was not reachable or the used software was not stated</li>
92             </ol>
93         </div>
94     {% elif mode == 'obfuscation' %}
95         <div class="notice">
96             <h3>Obfuscation status:</h3>
97             <ul>
98                 <li>Only supported networks are counted here.</li>
99                 <li><b>None</b> means not determined yet or erroneous.</li>
100             </ul>
101         </div>
102     {% endif %}
103     <a href="{{base_url}}/">Index</a> /
104     {{ super() }}
105 {% endblock %}