Skip to content

Commit ccd02cd

Browse files
committed
Rebasing off of the latest DLM Version 3.0.0 (Beta).
1 parent b8165a7 commit ccd02cd

File tree

4 files changed

+28
-31
lines changed

4 files changed

+28
-31
lines changed
353 KB
Loading

docs/user/cve_tracking.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ When creating a CVE object, the following fields are available. Fields in **bold
2828
!!! note
2929
In addition to these standard fields, you can also add one or more [Custom Fields](https://docs.nautobot.com/projects/core/en/stable/models/extras/customfield/) to the model.
3030

31-
<<<<<<< HEAD
32-
=======
3331
### Software Association
3432

35-
As stated previously, you can associate a CVE to one or many [Software objects](./software_lifecycle.md#software-objects). These relationships will present themselves as breadcrumb links on the CVE item's detail view, and as the "Related CVEs" tab on the Software item's detail view.
33+
As stated previously, you can associate a CVE to one or many software versions. These relationships will present themselves as breadcrumb links on the CVE item's detail view, and as the "Related CVEs" tab on the Software item's detail view.
3634

3735
Example of a breadcrumb link on a CVE item's view:
3836

@@ -41,7 +39,6 @@ Example of a breadcrumb link on a CVE item's view:
4139
Example of the "Related CVEs" tab on a Software item's view:
4240

4341
![](../images/lcm_software_breadcrumb.png)
44-
>>>>>>> a54d358 (Adding the new NIST CVE Tracking feature for 3.x release.)
4542

4643
## Vulnerability objects
4744

@@ -80,6 +77,7 @@ An External Integration must be created and configured in order to use the NIST
8077
- A new Secrets Group object named ``NAUTOBOT DLM NIST SECRETS GROUP`` used for access to the NIST API Key from the External Integration.
8178
- A new Secret object named ``NAUTOBOT DLM NIST API KEY``. This object is created for you during setup with minimum defaults. The Secret name must be exactly as above, but you will need to configure the Secret to properly access the NIST API Key.
8279
- To obtain your NIST API Key go [here]('https://nvd.nist.gov/developers/request-an-api-key').
80+
- This key will be made invalid if not used for a seven day period and a request for a new key will be necessary to use this function.
8381

8482
NOTE: You may change the name of the External Integration or create your own using other configuration settings, but the SecretsGroup and Secret objects must be named as above. The External Integration is selected when starting the Job run.
8583

nautobot_device_lifecycle_mgmt/jobs/cve_tracking.py

-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,6 @@ def query_api(self, url: str) -> dict:
321321
try:
322322
result = session.get(url)
323323
result.raise_for_status()
324-
session.close()
325324
return result.json()
326325
except HTTPError as err:
327326
code = err.response.status_code

poetry.lock

+26-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)