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

Overview

Scanscope version
{{ scanscope_version }}
Scanscope command
{{ scanscope_command }}
{% if reports|length == 1 %} {# Single scan - no tabs needed #} {% set report = reports[0] %}

Scan Information

Filename
{{report.filename}}
Nmap command
{{report.commandline}}
Nmap version
{{report.version}}
Scan started
{{report.started|strftime}}
Scan ended
{{report.endtime|strftime}}
Scan duration
{{(report.elapsed/60*100)//100}} min
Total number of hosts
{{report.hosts_total}}
Number of hosts detected as "up"
{{report.hosts_up}}
Number of hosts detected as "down"
{{report.hosts_down}}
Total number of open ports
{{report.total_open_ports}}
{% else %} {# Multiple scans - use tabs #}

Scan Information

{% for report in reports %}
Filename
{{report.filename}}
Nmap command
{{report.commandline}}
Nmap version
{{report.version}}
Scan started
{{report.started|strftime}}
Scan ended
{{report.endtime|strftime}}
Scan duration
{{(report.elapsed/60*100)//100}} min
Total number of hosts
{{report.hosts_total}}
Number of hosts detected as "up"
{{report.hosts_up}}
Number of hosts detected as "down"
{{report.hosts_down}}
Total number of open ports
{{report.total_open_ports}}
{% endfor %}
{% endif %} {% endblock %}