Code Monkey home page Code Monkey logo

cve-api's Introduction

The CVE Package Build Status

Latest Stable Version Total Downloads Latest Unstable Version License

Requires PHP 7 >= 7.3 or PHP 8 < 8.2

Using the CVE Package

tbd

Instantiating CVE

Instantiating CVE Service is easy:

use Joomla\Cve\CveService;

$cve = new CveService;

This creates a basic Github object that can be used to access publicly available resources on mitre.org.

In most cases it is necessary to specify additional options. This can be done by injecting in a Registry object with your preferred options. Support is available for optionally providing a custom CVE account username and password, as well as a custom URL for the CVE API server (as would be the case for testing purposes).

use Joomla\Cve\CveService;
use Joomla\Registry\Registry;

$options = new Registry;
$options->set('api.org', 'cve_org');
$options->set('api.username', 'cve_username');
$options->set('api.key', 'cve_key');
$options->set('api.url', 'http://localhost:3000');

$cve = new CveService($options);

Available Options

Option key Description
api.key The key associated with the user to access the API.
api.org The organisation represented by the user.
api.url The URL for the API calls, defaults to 'https://cveawg.mitre.org/api'. Set it to 'http://localhost:3000' for integration tests against the cveawg Docker container.
api.username The username for the CVE account.
userAgent The user agent to use for requests. Defaults to 'Joomla-CVE/2.0'

Installation via Composer

Add "joomla/cve": "~2.0@dev" to the require block in your composer.json and then run composer install.

{
	"require": {
		"joomla/cve": "~2.0@dev"
	}
}

Alternatively, you can simply run the following from the command line:

composer require joomla/cve "~2.0@dev"

If you want to include the test sources, use

composer require --prefer-source joomla/cve "~2.0"

cve-api's People

Contributors

hackwar avatar nibra avatar philetaylor avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.