Skip to content

Commit

Permalink
Merge branch 'main' into is_alert_desc
Browse files Browse the repository at this point in the history
  • Loading branch information
floydtree authored Oct 3, 2024
2 parents 7fd54b4 + 609e739 commit 8215b85
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Thankyou! -->
7. Added `src_url` to the `cvss` object. #1176
8. Added `advisory`, `exploit_last_seen_time` to the `vulnerability` object. #1176
9. Added `related_cwes` to the `cve` object. #1176
10. Added `vendor_name` and `model` to `device` object.

### Bugfixes
1. Added sibling definition to `confidence_id` in dictionary, accurately associating `confidence` as its sibling. #1180
Expand Down
2 changes: 1 addition & 1 deletion dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -2944,7 +2944,7 @@
},
"model": {
"caption": "Model",
"description": "The peripheral device model.",
"description": "The model name of an entity. See specific usage.",
"type": "string_t"
},
"modified_time": {
Expand Down
8 changes: 8 additions & 0 deletions objects/device.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@
"description": "The time when the device was last known to have been modified.",
"requirement": "optional"
},
"model": {
"description": "The model of the device. For example <code>ThinkPad X1 Carbon</code>.",
"requirement": "optional"
},
"name": {
"description": "The alternate device name, ordinarily as assigned by an administrator. <p><b>Note:</b> The <b>Name</b> could be any other string that helps to identify the device, such as a phone number; for example <code>310-555-1234</code>.</p>",
"requirement": "optional"
Expand Down Expand Up @@ -116,6 +120,10 @@
"uid_alt": {
"description": "An alternate unique identifier of the device if any. For example the ActiveDirectory DN.",
"requirement": "optional"
},
"vendor_name": {
"description": "The vendor for the device. For example <code>Dell</code> or <code>Lenovo</code>.",
"requirement": "recommended"
}
}
}
1 change: 1 addition & 0 deletions objects/peripheral_device.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"requirement": "required"
},
"model": {
"description": "The peripheral device model.",
"requirement": "recommended"
},
"name": {
Expand Down

0 comments on commit 8215b85

Please sign in to comment.