| CARVIEW |
Select Language
HTTP/2 200
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
set-cookie: PHPSESSID=ubload1ngajcldnpjbrk22bukt; path=/
content-type: text/html; charset=UTF-8
date: Sat, 27 Dec 2025 14:01:14 GMT
server: Apache
pkgsrc.se | The NetBSD package collection
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
mail
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
print
regress
security
py-nvdli..
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./security/py-nvdlib, National Vulnerability Database CPE/CVE API Library for Python
[
Branch: CURRENT, Version: 0.8.3, Package name: py313-nvdlib-0.8.3, Maintainer: pkgsrc-users
NVDlib is a Python library that allows you to interface with the
NIST National Vulnerability Database (NVD), pull vulnerabilities
(CVEs), and Common Platform Enumeration (CPEs) into easily accessible
objects.
### Features
- Search the NVD for CVEs using all parameters allowed by the NVD
API (recently updated to utilize version 2 of the API). Including
search criteria such as CVE publish and modification date, keywords,
severity, score, or CPE name.
- Search CPE names by keywords, CPE match strings, or modification
dates. Then pull the CVE ID's that are relevant to those CPEs.
- Retrieve details on individual CVEs, their relevant CPE names,
and more.
- Built in rate limiting according to NIST NVD recommendations.
Get an API key to allow for a delay argument to be passed. Otherwise
it is 6 seconds between requests by default.
Navigation:
-
Browse pkgsrc
(this page)
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
regress
security
py-nvdli..shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./security/py-nvdlib, National Vulnerability Database CPE/CVE API Library for Python
[
CVSweb ] [
Homepage ] [
RSS ] [
Required by ] [
Add to tracker ]
Branch: CURRENT, Version: 0.8.3, Package name: py313-nvdlib-0.8.3, Maintainer: pkgsrc-users
NVDlib is a Python library that allows you to interface with the
NIST National Vulnerability Database (NVD), pull vulnerabilities
(CVEs), and Common Platform Enumeration (CPEs) into easily accessible
objects.
### Features
- Search the NVD for CVEs using all parameters allowed by the NVD
API (recently updated to utilize version 2 of the API). Including
search criteria such as CVE publish and modification date, keywords,
severity, score, or CPE name.
- Search CPE names by keywords, CPE match strings, or modification
dates. Then pull the CVE ID's that are relevant to those CPEs.
- Retrieve details on individual CVEs, their relevant CPE names,
and more.
- Built in rate limiting according to NIST NVD recommendations.
Get an API key to allow for a delay argument to be passed. Otherwise
it is 6 seconds between requests by default.
Master sites:
Filesize: 535.669 KBVersion history: (Expand)
- (2025-10-24) Package has been reborn
- (2025-10-24) Package deleted from pkgsrc
- (2025-10-09) Updated to version: py313-nvdlib-0.8.3
- (2025-09-02) Updated to version: py312-nvdlib-0.8.3
- (2025-07-15) Package has been reborn
- (2025-07-15) Package deleted from pkgsrc
CVS history: (Expand)
| 2025-10-09 09:58:14 by Thomas Klausner | Files touched by this commit (442) |
Log message: *: remove reference to (removed) Python 3.9 |
| 2025-09-02 09:29:46 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-nvdlib: updated to 0.8.3 0.8.3 Fixed an issue with searchCPEmatch where batching/paging did not work correctly Modified to paging logic to better align with NIST published best practices for \ the NVD AP |
| 2025-04-14 07:09:33 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-nvdlib: updated to 0.8.0 0.8.0 (2025-03-19) **Bugfixes** - Fixed passing the boolean to the URL on hasKev, hasOval, hasCertAlerts, \ hasCertNotes, and keyworkExactMatch |
| 2025-01-14 07:43:18 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-nvdlib: updated to 0.7.9 0.7.9 (2025-01-13) **Enhancements** - Added missing CVSS 3.0 data for `attackVector`, `attackComplexity`, \ `privilegesRequired`, `userInteraction`, `scope`, `confidentialityImpact`, \ `integrityImpact`, and `availabilityImpact` as reported from \ https://github.com/vehemont/nvdlib/issues/48 - Added basic CVSS 4.0 data: `v40score`, `v40vector`, and `v40severity` in CVEs. - Merged https://github.com/vehemont/nvdlib/pull/49 and \ https://github.com/vehemont/nvdlib/pull/50 to add more type hints and also fixes \ the MatchString search. Courtesy of @LachJones. - Increased minimum required Python version to `3.11` or later from Python \ 3.8.3. This opens up some cooler features and fixed a compatibility issue with \ `LiteralString` not being available until 3.11. 0.7.8 (2024-07-11) **Enhancements** - Merged https://github.com/vehemont/nvdlib/pull/44 - Updated delay parameter to a float. - Removed verbose in favor of the Python logging module. To try out the new logging addition, try the simple logger configuration below. \ It will create a file named "example_NVDLib.log" and will log NVDLib \ and Requests actions into the file. Syntax errors/HTTP server errors are logging \ level of "error", URLs requested (similar output to the previous \ `verbose` parameter) are set to "debug". ``` import logging import nvdlib logging.basicConfig(filename='example_NVDLib.log', encoding='utf-8', \ level=logging.DEBUG) r = nvdlib.searchCVE(keywordSearch="Microsoft") ``` |
| 2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message: py-*: remove unused tool dependency py-setuptools includes the py-wheel functionality nowadays |
| 2024-08-22 11:56:57 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-nvdlib: updated to 0.7.7 0.7.7 (2024-06-02) **Bugfixes** - Fix cwe attr in CVE by @jobselko in https://github.com/vehemont/nvdlib/pull/39 **Enhancements** - Added CPE Match String API with `nvdlib.searchCPEmatch`, check out the \ documentation at \ https://nvdlib.com/en/latest/v2/CVEv2.html#CPE-Match-Criteria-API and more \ information can be found at the NVD API documentation page: \ https://nvd.nist.gov/developers/products |
| 2023-11-19 02:16:31 by Thomas Klausner | Files touched by this commit (4) | |
Log message: security/py-nvdlib: import py-nvdlib-0.7.6 NVDlib is a Python library that allows you to interface with the NIST National Vulnerability Database (NVD), pull vulnerabilities (CVEs), and Common Platform Enumeration (CPEs) into easily accessible objects. ### Features - Search the NVD for CVEs using all parameters allowed by the NVD API (recently updated to utilize version 2 of the API). Including search criteria such as CVE publish and modification date, keywords, severity, score, or CPE name. - Search CPE names by keywords, CPE match strings, or modification dates. Then pull the CVE ID's that are relevant to those CPEs. - Retrieve details on individual CVEs, their relevant CPE names, and more. - Built in rate limiting according to NIST NVD recommendations. Get an API key to allow for a delay argument to be passed. Otherwise it is 6 seconds between requests by default. |
