-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstructs.go
354 lines (344 loc) · 10.9 KB
/
structs.go
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
package darktrace
type Device struct {
ID int64 `json:"id"`
IP string `json:"ip,omitempty"`
Ips []struct {
IP string `json:"ip"`
Timems int64 `json:"timems"`
Time string `json:"time"`
Sid int64 `json:"sid"`
} `json:"ips,omitempty"`
Did int64 `json:"did,omitempty"`
Sid int64 `json:"sid,omitempty"`
Hostname string `json:"hostname,omitempty"`
Time int64 `json:"time,omitempty"`
Endtime int64 `json:"endtime,omitempty"`
Os string `json:"os,omitempty"`
Typename string `json:"typename,omitempty"`
Typelabel string `json:"typelabel,omitempty"`
DeduplicatedIds []int64 `json:"deduplicated_ids,omitempty"`
}
type DeviceInfo struct {
DeviceInfo []struct {
Did int64 `json:"did"`
SimilarityScore int64 `json:"similarityScore"`
GraphData []struct {
Time int64 `json:"time"`
Count int64 `json:"count"`
} `json:"graphData"`
Info struct {
TotalUsed int64 `json:"totalUsed"`
TotalServed int64 `json:"totalServed"`
TotalDevicesAndPorts int64 `json:"totalDevicesAndPorts"`
DevicesAndPorts []struct {
DeviceAndPort string `json:"deviceAndPort"`
Size int64 `json:"size"`
} `json:"devicesAndPorts"`
PortsUsed []struct {
Port interface{} `json:"port"`
Size int64 `json:"size"`
FirstTime int64 `json:"firstTime"`
} `json:"portsUsed"`
PortsServed []struct {
Port interface{} `json:"port"`
Size int64 `json:"size"`
} `json:"portsServed"`
DevicesUsed []struct {
Did interface{} `json:"did"`
Size int64 `json:"size"`
FirstTime int64 `json:"firstTime,omitempty"`
} `json:"devicesUsed"`
DevicesServed []struct {
Did interface{} `json:"did"`
Size int64 `json:"size"`
} `json:"devicesServed"`
} `json:"info"`
} `json:"deviceInfo"`
}
type SimilarDevice struct {
Did int64 `json:"did"`
Objecttype string `json:"objecttype"`
Score int64 `json:"score"`
IP string `json:"ip"`
Ips []struct {
IP string `json:"ip"`
Timems int64 `json:"timems"`
Time string `json:"time"`
Sid int64 `json:"sid"`
} `json:"ips"`
Sid int64 `json:"sid"`
Hostname string `json:"hostname,omitempty"`
FirstSeen int64 `json:"firstSeen"`
LastSeen int64 `json:"lastSeen"`
Os string `json:"os,omitempty"`
Typename string `json:"typename"`
Typelabel string `json:"typelabel"`
Priority int64 `json:"priority,omitempty"`
}
type DeviceMetric struct {
Time string `json:"time"`
TimeMS int64 `json:"timems"`
Size int64 `json:"size"`
In int64 `json:"in"`
Out int64 `json:"out"`
}
type Model struct {
Name string `json:"name"`
Pid int64 `json:"pid"`
Phid int64 `json:"phid"`
UUID string `json:"uuid"`
Logic struct {
Data []interface{} `json:"data"`
Type string `json:"type"`
Version int64 `json:"version"`
} `json:"logic"`
Throttle int64 `json:"throttle"`
SharedEndpoints bool `json:"sharedEndpoints"`
Actions struct {
Alert bool `json:"alert"`
Antigena struct {
} `json:"antigena"`
Breach bool `json:"breach"`
Model bool `json:"model"`
SetPriority interface{} `json:"setPriority"`
SetTag interface{} `json:"setTag"`
SetType interface{} `json:"setType"`
} `json:"actions"`
Tags []string `json:"tags"`
Interval int64 `json:"interval"`
Sequenced bool `json:"sequenced"`
Active bool `json:"active"`
Modified string `json:"modified"`
ActiveTimes struct {
Devices struct {
} `json:"devices"`
Tags struct {
} `json:"tags"`
Type string `json:"type"`
Version int64 `json:"version"`
} `json:"activeTimes"`
Priority int64 `json:"priority"`
AutoUpdatable bool `json:"autoUpdatable"`
AutoUpdate bool `json:"autoUpdate"`
AutoSuppress bool `json:"autoSuppress"`
Description string `json:"description"`
Behaviour string `json:"behaviour"`
Defeats []interface{} `json:"defeats"`
Created struct {
By string `json:"by"`
} `json:"created"`
Edited struct {
By string `json:"by"`
} `json:"edited"`
History []struct {
Modified string `json:"modified"`
Active bool `json:"active"`
Message string `json:"message"`
By string `json:"by"`
Phid int64 `json:"phid"`
} `json:"history"`
Message string `json:"message"`
Version int64 `json:"version"`
}
type ModelComponent struct {
Cid int64 `json:"cid"`
Chid int64 `json:"chid"`
Mlid int64 `json:"mlid"`
Threshold int64 `json:"threshold"`
Interval int64 `json:"interval"`
Logic struct {
Data interface{} `json:"data"`
Version string `json:"version"`
} `json:"logic"`
Filters []interface{} `json:"filters"`
Active bool `json:"active"`
}
type ModelBreach struct {
CreationTime int64 `json:"creationTime"`
CommentCount int64 `json:"commentCount"`
Pbid int64 `json:"pbid"`
Time int64 `json:"time"`
Model struct {
Then struct {
Name string `json:"name"`
Pid int64 `json:"pid"`
Phid int64 `json:"phid"`
UUID string `json:"uuid"`
Logic struct {
Data interface{} `json:"data"`
Type string `json:"type"`
Version int64 `json:"version"`
} `json:"logic"`
Throttle int64 `json:"throttle"`
SharedEndpoints bool `json:"sharedEndpoints"`
Actions struct {
Alert bool `json:"alert"`
Antigena struct {
} `json:"antigena"`
Breach bool `json:"breach"`
Model bool `json:"model"`
SetPriority bool `json:"setPriority"`
SetTag bool `json:"setTag"`
SetType bool `json:"setType"`
} `json:"actions"`
Tags []string `json:"tags"`
Interval int64 `json:"interval"`
Sequenced bool `json:"sequenced"`
Active bool `json:"active"`
ReadOnly bool `json:"readOnly"`
Modified string `json:"modified"`
ActiveTimes struct {
Devices struct {
} `json:"devices"`
Tags struct {
} `json:"tags"`
Type string `json:"type"`
Version int64 `json:"version"`
} `json:"activeTimes"`
Priority int64 `json:"priority"`
AutoUpdatable bool `json:"autoUpdatable"`
AutoUpdate bool `json:"autoUpdate"`
AutoSuppress bool `json:"autoSuppress"`
Description string `json:"description"`
Behaviour string `json:"behaviour"`
Defeats []interface{} `json:"defeats"`
Created struct {
} `json:"created"`
Edited struct {
} `json:"edited"`
Version int64 `json:"version"`
} `json:"then"`
Now struct {
Name string `json:"name"`
Pid int64 `json:"pid"`
Phid int64 `json:"phid"`
UUID string `json:"uuid"`
Logic struct {
Data interface{} `json:"data"`
Type string `json:"type"`
Version int64 `json:"version"`
} `json:"logic"`
Throttle int64 `json:"throttle"`
SharedEndpoints bool `json:"sharedEndpoints"`
Actions struct {
Alert bool `json:"alert"`
Antigena struct {
} `json:"antigena"`
Breach bool `json:"breach"`
Model bool `json:"model"`
SetPriority bool `json:"setPriority"`
SetTag bool `json:"setTag"`
SetType bool `json:"setType"`
} `json:"actions"`
Tags []string `json:"tags"`
Interval int64 `json:"interval"`
Sequenced bool `json:"sequenced"`
Active bool `json:"active"`
ReadOnly bool `json:"readOnly"`
Modified string `json:"modified"`
ActiveTimes struct {
Devices struct {
} `json:"devices"`
Tags struct {
} `json:"tags"`
Type string `json:"type"`
Version int64 `json:"version"`
} `json:"activeTimes"`
Priority int64 `json:"priority"`
AutoUpdatable bool `json:"autoUpdatable"`
AutoUpdate bool `json:"autoUpdate"`
AutoSuppress bool `json:"autoSuppress"`
Description string `json:"description"`
Behaviour string `json:"behaviour"`
Defeats []interface{} `json:"defeats"`
Created struct {
} `json:"created"`
Edited struct {
} `json:"edited"`
Version int64 `json:"version"`
} `json:"now"`
} `json:"model"`
TriggeredComponents []struct {
Time int64 `json:"time"`
Cbid int64 `json:"cbid"`
Cid int64 `json:"cid"`
Chid int64 `json:"chid"`
Size int64 `json:"size"`
Threshold int64 `json:"threshold"`
Interval int64 `json:"interval"`
Metric struct {
Mlid int64 `json:"mlid"`
Name string `json:"name"`
Label string `json:"label"`
} `json:"metric"`
TriggeredFilters []struct {
Cfid int64 `json:"cfid"`
ID string `json:"id"`
FilterType string `json:"filterType"`
Arguments struct {
Value interface{} `json:"value"`
} `json:"arguments,omitempty"`
ComparatorType string `json:"comparatorType"`
Trigger struct {
Value interface{} `json:"value"`
} `json:"trigger"`
} `json:"triggeredFilters"`
} `json:"triggeredComponents"`
Score float64 `json:"score"`
Device struct {
Did int64 `json:"did"`
Objecttype string `json:"objecttype"`
Hostname string `json:"hostname"`
IP string `json:"ip"`
Sid int64 `json:"sid"`
Typelabel string `json:"typelabel"`
Typename string `json:"typename"`
DeduplicatedIds []int64 `json:"deduplicated_ids"`
} `json:"device"`
}
type EnumResponse struct {
Results map[string][]Enum
}
type Enum struct {
Code string `json:"code"`
Name string `json:"name"`
Hidden bool `json:"hidden,omitempty"`
}
type EndpointDetails struct {
Hostname string `json:"hostname"`
Dgascore int64 `json:"dgascore"`
Firsttime int64 `json:"firsttime"`
Popularity int64 `json:"popularity"`
Devices []struct {
Did int64 `json:"did"`
Objecttype string `json:"objecttype"`
Macaddress string `json:"macaddress,omitempty"`
Vendor string `json:"vendor,omitempty"`
IP string `json:"ip"`
Ips []struct {
IP string `json:"ip"`
Timems int64 `json:"timems"`
Time string `json:"time"`
Sid int64 `json:"sid"`
} `json:"ips"`
Sid int64 `json:"sid"`
Hostname string `json:"hostname"`
FirstSeen int64 `json:"firstSeen"`
LastSeen int64 `json:"lastSeen"`
Os string `json:"os"`
Typename string `json:"typename"`
Typelabel string `json:"typelabel"`
DeduplicatedIds []int64 `json:"deduplicated_ids"`
} `json:"devices"`
Ips []struct {
IP string `json:"ip"`
Firsttime int64 `json:"firsttime"`
Lasttime int64 `json:"lasttime"`
} `json:"ips"`
Locations []struct {
Latitude int64 `json:"latitude"`
Longitude int64 `json:"longitude"`
Country string `json:"country"`
City string `json:"city"`
} `json:"locations"`
}