-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanomaly_investigation.xml
141 lines (141 loc) · 5.12 KB
/
anomaly_investigation.xml
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<form version="1.1" theme="dark">
<label>Anomaly Investigation</label>
<fieldset submitButton="true">
<input type="time" token="field1">
<label></label>
<default>
<earliest>-24h@h</earliest>
<latest>now</latest>
</default>
</input>
</fieldset>
<row>
<panel>
<title>Top 10 Ports</title>
<chart>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip= $selected_ip$
| stats count by connection_port
| sort - count
| head 10</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="charting.chart">pie</option>
<option name="charting.drilldown">none</option>
<option name="refresh.display">progressbar</option>
</chart>
</panel>
<panel>
<title>Top 10 Services</title>
<table>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip= $selected_ip$
| stats count by connection_service
| sort - count
| head 10</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="drilldown">none</option>
<option name="refresh.display">progressbar</option>
</table>
</panel>
<panel>
<title>Connection Device</title>
<chart>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip= $selected_ip$
| stats count by connection_device
| sort - count
| head 10</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="charting.chart">pie</option>
<option name="charting.drilldown">none</option>
<option name="refresh.display">progressbar</option>
</chart>
</panel>
<panel>
<title>Server Device</title>
<chart>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip= $selected_ip$
| stats count by server_device
| sort - count
| head 10</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="charting.chart">pie</option>
<option name="charting.drilldown">none</option>
<option name="refresh.display">progressbar</option>
</chart>
</panel>
</row>
<row>
<panel>
<title>NetFlow</title>
<table>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip= $selected_ip$
| table timestamp, connection_ip , connection_device, server_ip, server_device, pkt_size, fwd_size, bwd_size, flow_dur, flow_bytes,</query>
<earliest>0</earliest>
<latest></latest>
</search>
<option name="drilldown">none</option>
<option name="refresh.display">progressbar</option>
</table>
</panel>
</row>
<row>
<panel>
<title>Total Nomalized Backward Bytes</title>
<single>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip= $selected_ip$
| stats sum(bwd_size) as bwd_size_sum</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="drilldown">none</option>
<option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
<option name="refresh.display">progressbar</option>
<option name="useColors">1</option>
</single>
</panel>
<panel>
<title>Total Normalized Forward Bytes</title>
<single>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip= $selected_ip$
| stats sum(fwd_size) as fwd_size_sum</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="drilldown">none</option>
<option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
<option name="refresh.display">progressbar</option>
<option name="useColors">1</option>
</single>
</panel>
</row>
<row>
<panel>
<title>Normalized Time Graph</title>
<chart>
<search>
<query>source="anom_investigate.csv" host="Josiah" sourcetype="csv" connection_ip=$selected_ip$
| timechart span=1h avg(pkt_size) as "Average Packet Size", avg(fwd_size) as "Average Forward Size", avg(bwd_size) as "Average Backward Size", avg(flow_dur) as "Average Flow Duration", avg(flow_bytes) as "Average Flow Bytes"
| fillnull value=0</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="charting.chart">line</option>
<option name="charting.drilldown">none</option>
<option name="refresh.display">progressbar</option>
</chart>
</panel>
</row>
</form>