msn/fastcve-openapi

fast, rich and API-based search for CVE and more (CPE, CWE, CAPEC)

1.0.0 2023-11-21 13:02 UTC

This package is auto-updated.

Last update: 2025-06-21 16:44:15 UTC


README

fast, rich and API-based search for CVE and more (CPE, CWE, CAPEC)

Installation & Usage

Requirements

PHP 7.4 and later. Should also work with PHP 8.0.

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/msn/fastcve-openapi.git"
    }
  ],
  "require": {
    "msn/fastcve-openapi": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

<?php
require_once('/path/to/fastcve/vendor/autoload.php');

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');




$apiInstance = new Msn\Apis\FastCVE\Api\SearchApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$page_idx = 0; // int | Results page index
$page_size = 10; // int | Results page size
$keyword = array('keyword_example'); // string[] | regexp to search for CPE in the description
$capec = array('capec_example'); // string[] | Related CAPEC IDs to search for

try {
    $result = $apiInstance->searchCAPECApiSearchCapecGet($page_idx, $page_size, $keyword, $capec);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling SearchApi->searchCAPECApiSearchCapecGet: ', $e->getMessage(), PHP_EOL;
}

API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
SearchApi searchCAPECApiSearchCapecGet GET /api/search/capec Search Capec
SearchApi searchCPEApiSearchCpeGet GET /api/search/cpe Search Cpe
SearchApi searchCVEApiSearchCveGet GET /api/search/cve Search Cve
SearchApi searchCWEApiSearchCweGet GET /api/search/cwe Search Cwe
StatusApi dBStatusStatusGet GET /status Db Status

Models

Authorization

Endpoints do not require authorization.

Tests

To run the tests, use:

composer install
vendor/bin/phpunit

Author

About this package

This PHP package is automatically generated by the OpenAPI Generator project:

  • API version: 0.1.0
  • Build package: org.openapitools.codegen.languages.PhpClientCodegen