Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.02 KB

README.md

File metadata and controls

37 lines (25 loc) · 1.02 KB

Net::NVD

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,
    );

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

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