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

Add Common Process Identifier (CPID) field to process #1246

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ Thankyou! -->
1. Added `altitude_ceiling`, `altitude_floor`, `geodetic_altitude`, `aerial_height`, `horizontal_accuracy`, `pressure_altitude`, `radius`, `speed`, `track_direction`, and `vertical_speed` all to support `operating_area` and `unmanned_aerial_system` objects. #1169
1. Added `variable_name` and `variable_value` as `long_string`. #1228
1. Added `imei_list` as an array `string_t`. #1225
1. Added `cpid` as a `uuid_t`. #1246
* #### Objects
1. Added `environment_variable` object. #1172
1. Added `advisory` object. #1176
Expand Down Expand Up @@ -110,6 +111,7 @@ Thankyou! -->
1. Added `geodetic_altitude`, `height`, `horizontal_accuracy`, and `pressure_altitude` to `location`. #1169
1. Added `location` to `managed_entity`. #1169
1. Added `imei_list` to the `device` object. #1225
1. Added `cpid` to the `process` object. `cpid` added to process identification `at_least_one` constraint. #1246

### Bugfixes
1. Added sibling definition to `confidence_id` in dictionary, accurately associating `confidence` as its sibling. #1180
Expand Down
7 changes: 7 additions & 0 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -1168,6 +1168,13 @@
"description": "The Common Platform Enumeration (CPE) name as described by (<a target='_blank' href='https://nvd.nist.gov/products/cpe'>NIST</a>) For example: <code>cpe:/a:apple:safari:16.2</code>.",
"type": "string_t"
},
"cpid": {
"caption": "Common Process Identifier",
"source": "cpid",
"references": [{"url": "https://github.com/ocsf/common-process-id", "description": "OCSF Common Process Identifier (CPID) Specification"}],
"description": "A unique process identifier that can be assigned deterministically by multiple system data producers.",
"type": "uuid_t"
},
"cpu_bits": {
"caption": "CPU Bits",
"description": "The cpu architecture, the number of bits used for addressing in memory. For example: <code>32</code> or <code>64</code>.",
Expand Down
6 changes: 5 additions & 1 deletion objects/process.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"cmd_line": {
"requirement": "recommended"
},
"cpid":{
"requirement": "recommended"
},
"created_time": {
"description": "The time when the process was created/started.",
"requirement": "recommended"
Expand Down Expand Up @@ -80,7 +83,8 @@
"constraints": {
"at_least_one": [
"pid",
"uid"
"uid",
"cpid"
]
}
}