Skip to content

Commit

Permalink
Forgot to update documentation to use network_driver instead of vendo…
Browse files Browse the repository at this point in the history
…r, os_platform
  • Loading branch information
bminnix committed May 14, 2024
1 parent 922953f commit 670297e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user/lib_use_cases_nist.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Here are a few examples showing how to use this in your python code.
from netutils.nist import get_nist_urls

# Get NIST URL for the Cisco IOS object
get_nist_urls("Cisco", "IOS", "15.5(2)S1c")
get_nist_urls("cisco_ios", "15.5(2)S1c")
# ['https://services.nvd.nist.gov/rest/json/cves/2.0?virtualMatchString=cpe:2.3:o:cisco:ios:15.5\\(2\\)s1c:*']

# Get NIST URL(s) for the Juniper JunOS object
get_nist_urls("Juniper", "JunOS", "10.2R2.11")
get_nist_urls("juniper_junos", "10.2R2.11")
# ['https://services.nvd.nist.gov/rest/json/cves/2.0?virtualMatchString=cpe:2.3:o:juniper:junos:10.2r2:*:*:*:*:*:*:*', 'https://services.nvd.nist.gov/rest/json/cves/2.0?virtualMatchString=cpe:2.3:o:juniper:junos:10.2:r2:*:*:*:*:*:*']
```

Expand Down

0 comments on commit 670297e

Please sign in to comment.