forked from cuckoosandbox/cuckoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetwork.html
More file actions
116 lines (111 loc) · 4.37 KB
/
Copy pathnetwork.html
File metadata and controls
116 lines (111 loc) · 4.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<section id="network">
<div class="section-title">
<h4>Network Analysis</h4>
</div>
{% if results.network %}
{% if results.network.hosts %}
<div>
<h4><a href="javascript:showHide('hosts');">Hosts Involved</a></h4>
<div id="hosts" style="display: none;">
<table class="table table-striped table-bordered">
<tr>
<th>IP Address</th>
</tr>
{% for host in results.network.hosts %}
<tr>
<td><span class="mono">{{host}}</span></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}
{% if results.network.domains %}
<div>
<h4><a href="javascript:showHide('dns');">DNS Requests</a></h4>
<div id="dns" style="display: none;">
<table class="table table-striped table-bordered">
<tr>
<th>Domain</th>
<th>IP Address</th>
</tr>
{% for dns in results.network.domains %}
<tr>
<td><span class="mono">{{dns.domain}}</span></td>
<td><span class="mono">{{dns.ip}}</span></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}
{% if results.network.http %}
<div>
<h4><a href="javascript:showHide('http');">HTTP Requests</a></h4>
<div id="http" style="display: none;">
<table class="table table-striped table-bordered">
<tr>
<th>URL</th>
<th>Data</th>
</tr>
{% for http in results.network.http %}
<tr>
<td><span class="mono">{{http.uri}}</span></td>
<td><span class="mono"><pre>{{http.data}}</pre></span></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}
{% if results.network.irc %}
<div>
<h4><a href="javascript:showHide('irc');">IRC Requests</a></h4>
<div id="irc" style="display: none;">
<table class="table table-striped table-bordered">
<tr>
<th>Command</th>
<th>Params</th>
<th>Type</th>
</tr>
{% for irc in results.network.irc %}
<tr>
<td><span class="mono">{{irc.command}}</span></td>
<td><span class="mono"><pre>{{irc.params}}</pre></span></td>
<td><span class="mono"><pre>{{irc.type}}</pre></span></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}
{% if results.network.icmp %}
<div>
<h4><a href="javascript:showHide('icmp');">ICMP requests</a></h4>
<div id="icmp" style="display: none;">
<table class="table table-striped table-bordered">
<tr>
<th>Source</th>
<th>Destination</th>
<th>ICMP Type</th>
<th>Data</th>
</tr>
{% for icmp in results.network.icmp %}
<tr>
<td><span class="mono">{{icmp.src}}</span></td>
<td><span class="mono">{{icmp.dst}}</span></td>
<td><span class="mono">{{icmp.type}}</span></td>
<td><span class="mono"><pre>{{icmp.data}}</pre></span></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endif %}
{% if not results.network.hosts and not results.network.domains and not results.network.http and not results.network.irc and not results.network.icmp %}
Nothing to display.
{% endif %}
{% else %}
Nothing to display.
{% endif %}
</section>