Skip to content

Commit

Permalink
Merge branch 'main' into package_extension_1091
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Jurka <[email protected]>
  • Loading branch information
PavelJurka authored May 30, 2024
2 parents 5e2dca9 + c12527d commit 63350b7
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 6 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,14 @@ Thankyou! -->
3. Added `state_id`, `state` to `Digital Signature` object. #1069
4. Added `ticket` to `Incident Finding` object. ticket. #1068
5. Added `domain` to `Uniform Resource Locator` object. #1096
6. Added `vendor_name`, `type`, `type_id` to object `package`. #1091
6. Added `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078
7. Added `vendor_name`, `type`, `type_id` to object `package`. #1091

* #### Platform Extensions

### Bugfixes
1. Fixed the host profile construction in `patch_state` event class. #1087
2. Removed the optional requirement overrides for `name` and `uid` in `_resource` as they are part of a constraint. #1087

### Deprecated

Expand Down Expand Up @@ -284,4 +288,4 @@ Thankyou! -->

## [v1.0.0]

Initial release of OCSF.
Initial release of OCSF.
4 changes: 4 additions & 0 deletions events/discovery/patch_state.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
"host"
],
"attributes": {
"$include": [
"profiles/host.json"
],
"device": {
"profile": null,
"group": "primary",
"requirement": "required"
},
Expand Down
36 changes: 36 additions & 0 deletions extensions/windows/objects/evidences.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"caption": "Windows Evidence Artifacts",
"description": "Extends the evidences object to add Windows specific fields",
"extends": "evidences",
"attributes": {
"reg_key": {
"description": "Describes details about the registry key that triggered the detection.",
"requirement": "recommended"
},
"reg_value": {
"description": "Describes details about the registry value that triggered the detection.",
"requirement": "recommended"
}
},
"constraints": {
"at_least_one": [
"actor",
"api",
"connection_info",
"data",
"database",
"databucket",
"device",
"dst_endpoint",
"email",
"file",
"process",
"query",
"src_endpoint",
"url",
"user",
"reg_key",
"reg_value"
]
}
}
6 changes: 2 additions & 4 deletions objects/_resource.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,14 @@
"requirement": "optional"
},
"name": {
"description": "The name of the resource.",
"requirement": "optional"
"description": "The name of the resource."
},
"type": {
"description": "The resource type as defined by the event source.",
"requirement": "optional"
},
"uid": {
"description": "The unique identifier of the resource.",
"requirement": "optional"
"description": "The unique identifier of the resource."
}
}
}

0 comments on commit 63350b7

Please sign in to comment.