Skip to content
/ Net-NVD Public
forked from CPAN-Security/Net-NVD

Query CVE data from NIST's NVD (National Vulnerability Database)

Notifications You must be signed in to change notification settings

Tux/Net-NVD

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Net::NVD

Perl interface to L<< NIST's National Vulnerability Database (NVD) | https://nvd.nist.gov/>>, 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,
    );

Installation

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 L.

This product uses data from the NVD API but is not endorsed or certified by the NVD.

About

Query CVE data from NIST's NVD (National Vulnerability Database)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Perl 100.0%