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 device identifier fields to aid unique identification of Linux, Mac and Windows computers #1268

Merged
merged 4 commits into from
Dec 3, 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Thankyou! -->
1. Added new `11: Basic Authentication` enum value to `auth_protocol_id`. #1239
1. Added `values` as an array of `string_t`. #1251
1. Added `kernel_release` as a `string_t`. #1249
1. Added `os_machine_uuid` as a `uuid_t`. #1268
* #### Objects
1. Added `environment_variable` object. #1172
1. Added `advisory` object. #1176
Expand Down Expand Up @@ -132,6 +133,8 @@ Thankyou! -->
1. Added `values` to `key_value_object`. #1251
1. Added `kernel_release` to `os` object. #1249
1. Added `related_analytics` to `osint` object. #1264
1. Added `os_machine_uuid` to the `device` object. #1268
1. Added `uuid` to the `device_hw_info` object. #1268

### Bugfixes
1. Added sibling definition to `confidence_id` in dictionary, accurately associating `confidence` as its sibling. #1180
Expand Down
5 changes: 5 additions & 0 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -3344,6 +3344,11 @@
"type": "osint",
"is_array": true
},
"os_machine_uuid": {
"caption": "OS Machine UUID",
"description": "The operating system assigned Machine ID. In Windows, this is the value stored at the registry path: <code>HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Cryptography\\MachineGuid</code>. In Linux, this is stored in the file: <code>/etc/machine-id</code>.",
"type": "uuid_t"
},
"ou_name": {
"caption": "Org Unit Name",
"description": "The name of the organizational unit, within an organization. For example, Finance, IT, R&D",
Expand Down
3 changes: 3 additions & 0 deletions objects/device.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@
"description": "Organization and org unit related to the device.",
"requirement": "optional"
},
"os_machine_uuid": {
"requirement": "optional"
},
"region": {
"description": "The region where the virtual machine is located. For example, an AWS Region.",
"requirement": "recommended"
Expand Down
4 changes: 4 additions & 0 deletions objects/device_hw_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
"description": "The device manufacturer serial number.",
"requirement": "optional"
},
"uuid": {
"description": "The device manufacturer assigned universally unique hardware identifier. For example: The BIOS System UUID or the Apple IOPlatformUUID.",
"requirement": "optional"
},
"vendor_name": {
"description": "The device manufacturer.",
"requirement": "optional"
Expand Down
Loading