Skip to content

Commit 5febb21

Browse files
1 parent bab14da commit 5febb21

File tree

5 files changed

+31
-3
lines changed

5 files changed

+31
-3
lines changed

pytest_splunk_addon/CIM_Models/datamodel_definition.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2399,4 +2399,5 @@
23992399
# No fields changes between v6.0.0 and v6.0.2
24002400
datamodels["6.0.1"] = datamodels["6.0.0"]
24012401
datamodels["6.0.2"] = datamodels["6.0.0"]
2402-
datamodels["latest"] = datamodels["6.0.2"]
2402+
datamodels["6.1.0"] = datamodels["6.0.2"]
2403+
datamodels["latest"] = datamodels["6.1.0"]

pytest_splunk_addon/data_models/Authentication.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,16 @@
107107
"validity": "if(action in ['success', 'failure'], action, null())",
108108
"comment": "The human-readable message associated with the authentication action (success or failure)."
109109
},
110+
{
111+
"name": "reason_id",
112+
"type": "optional",
113+
"comment": "The reason why logon failed. For example \\'0xC0000234\\'."
114+
},
115+
{
116+
"name": "process",
117+
"type": "optional",
118+
"comment": "Full path and the name of the executable for the process that attempted the logon. For example, it is a \\\"Process Name\\\" in Windows such as `C:\\\\Windows\\\\System32\\\\svchost.exe`."
119+
},
110120
{
111121
"name": "src_user",
112122
"condition": "src_user=* tag=privileged",
@@ -118,6 +128,7 @@
118128
"type": "optional",
119129
"comment": "The account that manages the user that initiated the request. The account represents the organization, a Cloud customer, or a Cloud account."
120130
}
131+
121132
],
122133
"child_dataset": [
123134
{

pytest_splunk_addon/data_models/Endpoint.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,11 @@
351351
"name": "vendor_product",
352352
"type": "required",
353353
"comment": "The vendor and product name of the Endpoint solution that reported the event, such as Carbon Black Cb Response. This field can be automatically populated by vendor and product fields in your data."
354+
},
355+
{
356+
"name": "image",
357+
"type": "optional",
358+
"comment": "The binary file path or name that is tied to a process ID (PID) in events like process creation or termination."
354359
}
355360
],
356361
"child_dataset": [],
@@ -469,6 +474,11 @@
469474
"name": "vendor_product",
470475
"type": "required",
471476
"comment": "The vendor and product name of the Endpoint solution that reported the event, such as Carbon Black Cb Response. This field can be automatically populated by vendor and product fields in your data."
477+
},
478+
{
479+
"name": "image",
480+
"type": "optional",
481+
"comment": "The binary file path or name that is tied to a process ID (PID) in events like process creation or termination."
472482
}
473483
],
474484
"child_dataset": [],

pytest_splunk_addon/data_models/Network_Traffic.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,12 @@
198198
{
199199
"name": "rule",
200200
"type": "optional",
201-
"comment": "The rule which defines the action that was taken in the network event. Note: This is a string value. Use rule_id for rule fields that are integer data types. The rule_id field is optional, so it is not included in the data model"
201+
"comment": "The rule which defines the action that was taken in the network event. Note: This is a string value. Use rule_id for rule fields that are integer data types."
202+
},
203+
{
204+
"name": "rule_id",
205+
"type": "optional",
206+
"comment": "The vendor-specific unique identifier of the rule. Examples: 0x00011f0000011f00, 0x00011f00-syn_flood."
202207
},
203208
{
204209
"name": "session_id",

pytest_splunk_addon/data_models/Updates.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666
"available",
6767
"installed",
6868
"invalid",
69-
"restart required"
69+
"restart required",
70+
"failure"
7071
],
7172
"comment":"Indicates the status of a given patch requirement."
7273
},

0 commit comments

Comments
 (0)