forked from cuckoosandbox/cuckoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurl.html
More file actions
50 lines (50 loc) · 2.26 KB
/
Copy pathurl.html
File metadata and controls
50 lines (50 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<section id="url">
<div class="section-title">
<h4>URL Details</h4>
</div>
<table class="table table-striped table-bordered">
<colgroup>
<col width="150" />
<col width="*" />
</colgroup>
<tr>
<th>URL</th>
<td><span class="mono">{{results.target.url}}</span></td>
</tr>
<tr>
<th>VirusTotal</th>
<td>
{% if results.virustotal %}
{% if results.virustotal.response_code == 1 %}
<a href={{results.virustotal.permalink}}>Permalink</a><br>
VirusTotal Scan Date: {{results.virustotal.scan_date}}<br>
Detection Rate: {{results.virustotal.positives}}/{{results.virustotal.total}} (<a id="virustotal_lbl" href="javascript:showHide('virustotal', 'virustotal_lbl');">Expand</a>)
<div id="virustotal" style="display: none;margin-top: 5px;">
<table class="table table-bordered table-condensed">
<tr>
<th>Antivirus</th>
<th>Result</th>
</tr>
{% for key in results.virustotal.scans|sort %}
<tr>
<td>{{key}}</td>
{% if results["virustotal"]["scans"][key]["detected"] %}
<td><span class="text-error">
{% else %}
<td><span class="muted">
{% endif %}
{{ results["virustotal"]["scans"][key]["result"]|title }}</span></td>
</tr>
{% endfor %}
</table>
</div>
{% else %}
Domain not found on VirusTotal
{% endif %}
{% else %}
VirusTotal lookup disabled, add your API key to the module
{% endif %}
</td>
</tr>
</table>
</section>