Perl interface to NIST's National Vulnerability Database (NVD), allowing developers to search and retrieve CVE (Common Vulnerabilities and Exposures) information.
use Net::NVD;
my $nvd = Net::NVD->new;
# fetch a single CVE, by name.
my $cve = $nvd->get( 'CVE-2019-1010218' );
# search multiple CVE:
my @cves = $nvd->search(
keyword_search => 'perl cpan',
last_mod_start_date => '2023-01-15T13:00:00.000-03:00',
no_rejected => 1,
);
cpanm Net::NVD
or manually:
perl Makefile.PL
make test
make install
Please refer to this module's complete documentation for extra information.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
This product uses data from the NVD API but is not endorsed or certified by the NVD.