Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added reg_key and reg_value attributes to Evidence Artifacts object. #1078

Merged
merged 2 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ 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 `reg_key` and `reg_value` to `Evidence Artifacts` object. #1078

* #### Platform Extensions

### Bugfixes
Expand Down Expand Up @@ -285,4 +287,4 @@ Thankyou! -->

## [v1.0.0]

Initial release of OCSF.
Initial release of OCSF.
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"
]
}
}
Loading