Skip to content

Commit

Permalink
Minor addition to the cvss object (#1165)
Browse files Browse the repository at this point in the history
#### Related Issue: n/a

#### Description of changes:
1. Adding `vendor_name` to the `cvss` object to help represent the
source/vendor that provided the cvss scores.
2. Snippet from a sample source event from Amazon Inspector

```
"cvss": [
      {
        "baseScore": 10,
        "scoringVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
        "version": "3.1",
        "source": "UBUNTU_CVE"
      },
      {
        "baseScore": 10,
        "scoringVector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
        "version": "3.1",
        "source": "NVD"
      }
    ],

```

---------

Signed-off-by: Rajas Panat <rajaspa@amazon.com>
  • Loading branch information
floydtree authored Aug 21, 2024
1 parent 98f5409 commit 56bb644
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Thankyou! -->
* #### Objects
1. Added `phone_number` to `user` and `ldap_person` objects. #1155
2. Added `has_mfa` to `user` object. #1155
3. Added `vendor_name` to `cvss` object. #1165

### Misc
1. Added `user.uid` as an Observable type - `type_id: 31`. #1155
Expand Down
4 changes: 4 additions & 0 deletions objects/cvss.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
"vector_string": {
"requirement": "optional"
},
"vendor_name":{
"description": "The vendor that provided the CVSS score. For example: <code>NVD, REDHAT</code> etc.",
"requirement": "recommended"
},
"version": {
"description": "The CVSS version. For example: <code>3.1</code>.",
"requirement": "required"
Expand Down

0 comments on commit 56bb644

Please sign in to comment.