-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobservable.go
381 lines (337 loc) · 11.5 KB
/
observable.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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
/*
thehive5 implements functionality to interact with the most recent version of thehive.
https://www.strangebee.com/thehive/
*/
package thehive5
import (
"encoding/json"
"net/url"
"os"
"strconv"
"time"
)
// An Observable is used to define objects that have been seen in an alert on an incident
// It was renamed from Artifact to Observable in thehive5
type Observable struct {
DataType string `json:"dataType,omitempty"`
Data string `json:"data,omitempty"`
Message string `json:"message,omitempty"`
Tlp string `json:"tlp,omitempty"`
Pap string `json:"pap,omitempty"`
Tags []string `json:"tags,omitempty"`
Ioc bool `json:"ioc,omitempty"`
Sighted bool `json:"sighted,omitempty"`
StartDate time.Time `json:"startDate,omitempty"`
SightedAt time.Time `json:"sightedAt,omitempty"`
IgnoreSimilarity bool `json:"ignoreSimilarity,omitempty"`
IsZip bool `json:"isZip,omitempty"`
ZipPassword string `json:"zipPassword,omitempty"`
}
// Marshalling the observables
func (o *Observable) MarshalJSON() ([]byte, error) {
type Alias Observable
var (
startDateInt64 *int64
sightedAtInt64 *int64
tlpInt *int
papInt *int
)
if len(o.Tlp) != 0 {
var tlp Tlp
err := tlp.FromString(o.Tlp)
if err != nil {
return nil, err
}
tmp := int(tlp)
tlpInt = &tmp
}
if len(o.Pap) != 0 {
var pap Pap
err := pap.FromString(o.Pap)
if err != nil {
return nil, err
}
tmp := int(pap)
papInt = &tmp
}
if !o.StartDate.UTC().IsZero() {
dateTmp := o.StartDate.UTC().UnixMilli()
startDateInt64 = &dateTmp
}
if !o.SightedAt.UTC().IsZero() {
dateTmp := o.SightedAt.UTC().UnixMilli()
sightedAtInt64 = &dateTmp
sighted := true
o.Sighted = sighted
}
return json.Marshal(&struct {
StartDate *int64 `json:"startDate,omitempty"`
SightedAt *int64 `json:"sightedAt,omitempty"`
Tlp *int `json:"tlp,omitempty"`
Pap *int `json:"pap,omitempty"`
*Alias
}{
StartDate: startDateInt64,
SightedAt: sightedAtInt64,
Tlp: tlpInt,
Pap: papInt,
Alias: (*Alias)(o),
})
}
// ObservableResponse contains the returned values from thehive5 observable api
type ObservableResponse struct {
Id string `json:"_id"`
Type string `json:"_type"`
CreatedBy string `json:"_createdBy"`
UpdatedBy string `json:"_updatedBy"`
CreatedAt time.Time `json:"_createdAt"`
UpdatedAt time.Time `json:"_updatedAt"`
DataType string `json:"dataType"`
Data string `json:"data"`
StartDate time.Time `json:"startDate"`
Attachment Attachment `json:"attachment"`
Tlp int `json:"tlp"`
TlpLabel string `json:"tlpLabel"`
Pap int `json:"pap"`
PapLabel string `json:"papLabel"`
Tags []string `json:"tags"`
Ioc bool `json:"ioc"`
Sighted bool `json:"sighted"`
SightedAt time.Time `json:"sightedAt"`
Reports struct{} `json:"reports"`
Message string `json:"message"`
ExtraData ExtraData `json:"extraData,omitempty"`
IgnoreSimilarity bool `json:"ignoreSimilarity"`
}
// ObservableResponse contains the returned values from thehive5 observable api
type shadowObservableResponse struct {
Id string `json:"_id"`
Type string `json:"_type"`
CreatedBy string `json:"_createdBy"`
UpdatedBy string `json:"_updatedBy"`
CreatedAt int64 `json:"_createdAt"`
UpdatedAt int64 `json:"_updatedAt"`
DataType string `json:"dataType"`
Data string `json:"data"`
StartDate int64 `json:"startDate"`
Attachment Attachment `json:"attachment"`
Tlp int `json:"tlp"`
TlpLabel string `json:"tlpLabel"`
Pap int `json:"pap"`
PapLabel string `json:"papLabel"`
Tags []string `json:"tags"`
Ioc bool `json:"ioc"`
Sighted bool `json:"sighted"`
SightedAt int64 `json:"sightedAt"`
Reports struct{} `json:"reports"`
Message string `json:"message"`
ExtraData ExtraData `json:"extraData"`
IgnoreSimilarity bool `json:"ignoreSimilarity"`
}
type ExtraData struct {
Links *Links `json:"links,omitempty"`
}
func (or *ObservableResponse) UnmarshalJSON(data []byte) error {
shadow := new(shadowObservableResponse)
err := json.Unmarshal(data, &shadow)
if err != nil {
return err
}
or.Id = shadow.Id
or.Type = shadow.Type
or.CreatedBy = shadow.CreatedBy
or.UpdatedBy = shadow.UpdatedBy
or.CreatedAt = convertInt64ToTime(shadow.CreatedAt)
or.UpdatedAt = convertInt64ToTime(shadow.UpdatedAt)
or.DataType = shadow.DataType
or.Data = shadow.Data
or.StartDate = convertInt64ToTime(shadow.StartDate)
or.Attachment = shadow.Attachment
or.Tlp = shadow.Tlp
or.TlpLabel = shadow.TlpLabel
or.Pap = shadow.Pap
or.PapLabel = shadow.PapLabel
or.Tags = shadow.Tags
or.Ioc = shadow.Ioc
or.Sighted = shadow.Sighted
or.SightedAt = convertInt64ToTime(shadow.SightedAt)
or.Reports = shadow.Reports
or.Message = shadow.Message
or.ExtraData = shadow.ExtraData
or.IgnoreSimilarity = shadow.IgnoreSimilarity
return nil
}
type ObservableTypeResponse struct {
Id string `json:"_id"`
Type string `json:"_type"`
CreatedAt time.Time `json:"_createdAt"`
CreatedBy string `json:"_createdBy"`
Name string `json:"name"`
IsAttachment bool `json:"isAttachment"`
}
type shadowObservableTypeResponse struct {
Id string `json:"_id"`
Type string `json:"_type"`
CreatedAt int64 `json:"_createdAt"`
CreatedBy string `json:"_createdBy"`
Name string `json:"name"`
IsAttachment bool `json:"isAttachment"`
}
func (or *ObservableTypeResponse) UnmarshalJSON(data []byte) error {
shadow := new(shadowObservableTypeResponse)
err := json.Unmarshal(data, &shadow)
if err != nil {
return err
}
or.Id = shadow.Id
or.Type = shadow.Type
or.CreatedAt = convertInt64ToTime(shadow.CreatedAt)
or.CreatedBy = shadow.CreatedBy
or.Name = shadow.Name
or.IsAttachment = shadow.IsAttachment
return nil
}
// executeObservableTypeSearchQuery is a helper function to do query related searches
func (hive *Hivedata) executeObservableTypeSearchQuery(query []byte) ([]ObservableTypeResponse, error) {
url, err := url.JoinPath(hive.Url, "/api/v1/query")
if err != nil {
return nil, err
}
ret, err := hive.webRequest(url, POST, query)
if err != nil {
return nil, err
}
var parsedRet []ObservableTypeResponse
err = json.Unmarshal(ret, &parsedRet)
return parsedRet, err
}
// executeObservableSearchQuery is a helper function to do query related searches
func (hive *Hivedata) executeObservableSearchQuery(query []byte) ([]ObservableResponse, error) {
url, err := url.JoinPath(hive.Url, "/api/v1/query")
if err != nil {
return nil, err
}
ret, err := hive.webRequest(url, POST, query)
if err != nil {
return nil, err
}
var parsedRet []ObservableResponse
err = json.Unmarshal(ret, &parsedRet)
return parsedRet, err
}
// GetObservableTypes returns all types an observable can be
func (hive *Hivedata) GetObservableTypes() ([]ObservableTypeResponse, error) {
query, err := hive.createSearchQuery(
SearchQuery{Name: "listObservableType"},
SearchQuery{Name: "sort", Sort: &[1]map[string]string{{"_updatedAt": "desc"}}},
)
if err != nil {
return nil, err
}
return hive.executeObservableTypeSearchQuery(query)
}
// AddCaseObservable adds observables to an existing case.
func (hive *Hivedata) AddCaseObservable(incidentNumber int, observable *Observable) error {
url, err := url.JoinPath(hive.Url, "/api/v1/case/", strconv.Itoa(incidentNumber), "/observable")
if err != nil {
return err
}
jsondata, err := json.Marshal(observable)
if err != nil {
return err
}
_, err = hive.webRequest(url, POST, jsondata)
return err
}
// AddCaseObservableFile adds a file as an observable to a case.
func (hive *Hivedata) AddCaseObservableFile(incidentNumber int, observable *Observable, file *os.File) error {
url, err := url.JoinPath(hive.Url, "/api/v1/case/", strconv.Itoa(incidentNumber), "/observable")
if err != nil {
return err
}
jsondata, err := json.Marshal(observable)
if err != nil {
return err
}
_, err = hive.webRequestMultiPart(url, POST, jsondata, file)
return err
}
// GetCaseObservables returns all observables associated with a case
// It returns an observable slice or an error
func (hive *Hivedata) GetCaseObservables(caseId int) ([]ObservableResponse, error) {
caseNumber := strconv.Itoa(caseId)
query, err := hive.createSearchQuery(
SearchQuery{Name: "getCase", IdOrName: caseNumber},
SearchQuery{Name: "observables"},
)
if err != nil {
return nil, err
}
return hive.executeObservableSearchQuery(query)
}
// DeleteObservable deletes an observable
// Only returns data if an error occured
func (hive *Hivedata) DeleteObservable(observableID string) error {
url, err := url.JoinPath(hive.Url, "/api/v1/observable/", observableID)
if err != nil {
return err
}
_, err = hive.webRequest(url, DELETE, nil)
return err
}
// DeleteObservable deletes an observable specified by the ID got through GetObservables
// Only returns data if an error occured
func (hive *Hivedata) UpdateObservable(observableID string, observable *Observable) error {
url, err := url.JoinPath(hive.Url, "/api/v1/observable/", observableID)
if err != nil {
return err
}
jsonsearch, err := json.Marshal(observable)
if err != nil {
return err
}
_, err = hive.webRequest(url, PATCH, jsonsearch)
return err
}
// Get a single Observable
// It returns a pointer to an observable object or an error
func (hive *Hivedata) GetObservable(observableID string) (*ObservableResponse, error) {
url, err := url.JoinPath(hive.Url, "/api/v1/observable/", observableID)
if err != nil {
return nil, err
}
ret, err := hive.webRequest(url, GET, nil)
if err != nil {
return nil, err
}
var parsedRet *ObservableResponse
err = json.Unmarshal(ret, &parsedRet)
return parsedRet, err
}
// GetCaseObservableFiltered returns a single specified observable associated with a case filtered on a field & value
// It returns an observable slice or an error
func (hive *Hivedata) GetCaseObservablesFiltered(caseId int, queryfield, queryvalue string) ([]ObservableResponse, error) {
caseNumber := strconv.Itoa(caseId)
query, err := hive.createSearchQuery(
SearchQuery{Name: "getCase", IdOrName: caseNumber},
SearchQuery{Name: "observables"},
SearchQuery{Name: "filter", Eq: &Filter{Field: queryfield, Value: &queryvalue}})
if err != nil {
return nil, err
}
return hive.executeObservableSearchQuery(query)
}
// Find an observable globally
// It returns a pointer to an ObservableResponse slice or an error
// Be aware that the ObservableResponse will contain a ExtraData field which contains a HiveCaseResponse or HiveAlerResponse object
func (hive *Hivedata) FindObservable(value string) ([]ObservableResponse, error) {
query, err := hive.createSearchQuery(
SearchQuery{Name: "listObservable"},
SearchQuery{Name: "filter", And: &[]Filter{{Field: "keyword", Value: &value}}},
SearchQuery{Name: "sort", Sort: &[1]map[string]string{{"_createdAt": "desc"}}},
SearchQuery{Name: "page", ScopeFrom: 0, ScopeTo: 10, ExtraData: []string{"links"}})
if err != nil {
return nil, err
}
return hive.executeObservableSearchQuery(query)
}