-
Notifications
You must be signed in to change notification settings - Fork 5
/
detection_finding.py
426 lines (422 loc) · 14.5 KB
/
detection_finding.py
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
# The following is an example demonstrating how to create a full OCSF Detection Finding using py-ocsf-models.
# This example showcases the instantiation of various models and their association to create a rich,
# structured representation of a detection finding.
import uuid
from datetime import datetime
from py_ocsf_models.events.findings.detection_finding import DetectionFinding
from py_ocsf_models.events.findings.finding import FindingInformation
from py_ocsf_models.objects.api import (
API,
Group,
RequestElements,
ResponseElements,
Service,
)
from py_ocsf_models.objects.cloud import Account, Cloud, Organization
from py_ocsf_models.objects.container import Container, FingerPrint, Image
from py_ocsf_models.objects.dns_query import DNSOpcodeID, DNSQuery
from py_ocsf_models.objects.evidence_artifacts import EvidenceArtifacts
from py_ocsf_models.objects.metadata import Metadata
from py_ocsf_models.objects.operating_system import OperatingSystem
from py_ocsf_models.objects.product import Feature, Product
from py_ocsf_models.objects.remediation import KBArticle, Remediation
from py_ocsf_models.objects.resource_details import ResourceDetails
from py_ocsf_models.objects.vulnerability_details import VulnerabilityDetails
# Example instantiation of a DetectionFinding object with nested structures
detection_finding = DetectionFinding(
metadata=Metadata(
version="1.0",
product=Product(
feature=Feature(name="Name", uid="123", version="Version"),
lang="en",
name="Name",
path="Path",
cpe_name="CPE Name",
url_string="https://www.example.com",
uid="123",
vendor_name="Vendor Name",
version="Version",
),
),
finding_info=FindingInformation(
title="Title",
uid="123",
),
severity_id=1,
activity_name="Activity Name",
activity_id=1,
comment="Comment",
confidence="Confidence",
confidence_id=1,
confidence_score=123,
end_time=datetime.now(),
start_time=datetime.now(),
resources=[
ResourceDetails(
id="123",
name="Resource 1",
type="Resource",
details="Details of the resource",
)
],
category_name="Findings",
category_uid=2,
class_name="Detection Finding",
class_uid=2004,
api=API(
request=RequestElements(
containers=[
Container(
hash=FingerPrint(
algorithm="SHA256",
algorithm_id=3,
value="123",
),
image=Image(
tag="Tag 1",
name="Image 1",
labels=["Label 1"],
path="Path 1",
uid="123",
),
tag="Tag 1",
name="Container 1",
network_driver="Network Driver 1",
orchestrator="Orchestrator 1",
pod_uuid=str(uuid.uuid4()),
runtime="Runtime 1",
size=123,
uid="123",
)
],
data={"key": "value"},
flags=["Flag 1"],
uid="123",
),
response=ResponseElements(
containers=[
Container(
hash=FingerPrint(
algorithm="SHA256",
algorithm_id=3,
value="123",
),
image=Image(
tag="Tag 1",
name="Image 1",
labels=["Label 1"],
path="Path 1",
uid="123",
),
tag="Tag 1",
name="Container 1",
network_driver="Network Driver 1",
orchestrator="Orchestrator 1",
pod_uuid=str(uuid.uuid4()),
runtime="Runtime 1",
size=123,
uid="123",
)
],
data={"key": "value"},
error="Error",
error_message="Error Message",
flags=["Flag 1"],
message="Message",
code=123,
),
group=Group(
type="Group",
desc="Details of the group",
domain="Domain 1",
name="Group 1",
privileges=["Privilege 1"],
uid="123",
),
operation="GET",
service=Service(
labels=["Label 1"],
name="Service 1",
uid="123",
version="1.0",
),
version="1.0",
),
cloud=Cloud(
account=Account(
name="Account 1", type="Account", type_id="3", uid="123", labels=["Label 1"]
),
zone="Zone 1",
org=Organization(
name="Organization 1", ou_uid="123", ou_name="OU 1", uid="123"
),
project_uid="123",
provider="Provider 1",
region="Region 1",
),
container=Container(
hash=FingerPrint(
algorithm="SHA256",
algorithm_id=3,
value="123",
),
image=Image(
tag="Tag 1",
name="Image 1",
labels=["Label 1"],
path="Path 1",
uid="123",
),
tag="Tag 1",
name="Container 1",
network_driver="Network Driver 1",
orchestrator="Orchestrator 1",
pod_uuid=str(uuid.uuid4()),
runtime="Runtime 1",
size=123,
uid="123",
),
count=123,
duration=123,
time=datetime.now(),
evidences=[
EvidenceArtifacts(
api=API(
request=RequestElements(
containers=[
Container(
hash=FingerPrint(
algorithm="SHA256",
algorithm_id=3,
value="123",
),
image=Image(
tag="Tag 1",
name="Image 1",
labels=["Label 1"],
path="Path 1",
uid="123",
),
tag="Tag 1",
name="Container 1",
network_driver="Network Driver 1",
orchestrator="Orchestrator 1",
pod_uuid=str(uuid.uuid4()),
runtime="Runtime 1",
size=123,
uid="123",
)
],
data={"key": "value"},
flags=["Flag 1"],
uid="123",
),
response=ResponseElements(
containers=[
Container(
hash=FingerPrint(
algorithm="SHA256",
algorithm_id=3,
value="123",
),
image=Image(
tag="Tag 1",
name="Image 1",
labels=["Label 1"],
path="Path 1",
uid="123",
),
tag="Tag 1",
name="Container 1",
network_driver="Network Driver 1",
orchestrator="Orchestrator 1",
pod_uuid=str(uuid.uuid4()),
runtime="Runtime 1",
size=123,
uid="123",
)
],
data={"key": "value"},
error="Error",
error_message="Error Message",
flags=["Flag 1"],
message="Message",
code=123,
),
group=Group(
type="Group",
desc="Details of the group",
domain="Domain 1",
name="Group 1",
privileges=["Privilege 1"],
uid="123",
),
operation="GET",
service=Service(
labels=["Label 1"],
name="Service 1",
uid="123",
version="1.0",
),
version="1.0",
),
query=DNSQuery(
opcode="Query",
opcode_id=DNSOpcodeID.Query,
hostname="www.example.com",
packet_uid=123,
class_="IN",
type="A",
),
data={"key": "value"},
)
],
impact="Impact",
impact_score=123,
impact_id=123,
remediation=Remediation(
desc="Description",
kb_article_list=[
KBArticle(
classification="Classification",
created_time=datetime.now(),
os=OperatingSystem(
cpu_bits=64,
country="US",
lang="en",
name="Name",
build="Build",
edition="Edition",
sp_name="SP Name",
sp_ver=123,
cpe_name="CPE Name",
type="Type",
type_id=100,
version="Version",
),
bulletin="Bulletin",
product=Product(
feature=Feature(name="Name", uid="123", version="Version"),
lang="en",
name="Name",
path="Path",
cpe_name="CPE Name",
url_string="https://www.example.com",
uid="123",
vendor_name="Vendor Name",
version="Version",
),
severity="Severity",
size=123,
src_url="https://www.example.com",
is_superseded=True,
title="Title",
uid="123",
)
],
references=["https://www.example.com"],
),
risk_level="Risk Level",
risk_level_id=123,
risk_score=123,
risk_details="Risk Details",
timezone_offset=123,
type_id=123,
type_name="Type Name",
vulnerabilities=[
VulnerabilityDetails(
desc="Description",
is_exploit_available=True,
first_seen_time=datetime.now(),
kb_article_list=[
KBArticle(
classification="Classification",
created_time=datetime.now(),
os=OperatingSystem(
cpu_bits=64,
country="US",
lang="en",
name="Name",
build="Build",
edition="Edition",
sp_name="SP Name",
sp_ver=123,
cpe_name="CPE Name",
type="Type",
type_id=100,
version="Version",
),
bulletin="Bulletin",
product=Product(
feature=Feature(name="Name", uid="123", version="Version"),
lang="en",
name="Name",
path="Path",
cpe_name="CPE Name",
url_string="https://www.example.com",
uid="123",
vendor_name="Vendor Name",
version="Version",
),
severity="Severity",
size=123,
src_url="https://www.example.com",
is_superseded=True,
title="Title",
uid="123",
)
],
last_seen_time=datetime.now(),
references=["https://www.example.com"],
related_vulnerabilities=["123"],
remediation=Remediation(
desc="Description",
kb_article_list=[
KBArticle(
classification="Classification",
created_time=datetime.now(),
os=OperatingSystem(
cpu_bits=64,
country="US",
lang="en",
name="Name",
build="Build",
edition="Edition",
sp_name="SP Name",
sp_ver=123,
cpe_name="CPE Name",
type="Type",
type_id=100,
version="Version",
),
bulletin="Bulletin",
product=Product(
feature=Feature(name="Name", uid="123", version="Version"),
lang="en",
name="Name",
path="Path",
cpe_name="CPE Name",
url_string="https://www.example.com",
uid="123",
vendor_name="Vendor Name",
version="Version",
),
severity="Severity",
size=123,
src_url="https://www.example.com",
is_superseded=True,
title="Title",
uid="123",
)
],
references=["https://www.example.com"],
),
severity="Severity",
title="Title",
vendor_name="Vendor Name",
)
],
)
# Serialize to JSON
detection_finding_json = detection_finding.json()
print(detection_finding_json)