Skip to main content
Security & Audit/Security
GETSecuritySince 1.0SynchronousAuth Required

ListCVERules

List CVE rules, optionally filtered by severity.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Query Parameters

Request Inputs

Query Parameters

  • severityString

    Filter by severity level, e.g. "CRITICAL", "HIGH" Filter by severity level, e.g. "CRITICAL", "HIGH"

  • pageSizeInteger

    Maximum number of rules to return per page Maximum number of rules to return per page

    Example: 0

  • pageInteger

    Page number for paginated results, starting from 1 Page number for paginated results, starting from 1

    Example: 0

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of CVE rules matching the query criteria

    Example: (nested array)

    • cveIdString

      CVE identifier in standard format

      Example: CVE-2021-44228

    • severityString

      Severity level of the vulnerability

      Example: CVE_SEVERITY_UNSPECIFIED

    • cvssScoreLong

      CVSS base score for this vulnerability

      Example: 9.8

    • descriptionString

      Human-readable description of the vulnerability

      Example: Remote code execution via Log4Shell

    • affectedPackagesList

      List of packages affected by this CVE rule

      Example: (nested array)

      • nameString

        Package name affected by the CVE vulnerability

        Example: openssl

      • affectedVersionsRangeString

        Version range expression describing affected versions

        Example: >=1.0.0,<1.1.1l

      • fixVersionString

        Version in which the vulnerability is fixed

        Example: 1.1.1l

    • fixVersionString

      Version that resolves this CVE

      Example: 2.17.0

  • totalInteger

    Total number of CVE rules matching the query

    Example: 1200

  • limitInteger

    Maximum number of items returned in this response

    Example: 20

  • offsetInteger

    Number of items skipped before this page

    Example: 20

Endpoint

GET/api/v1/security/cve-rules

/api/v1/security/cve-rules

Operation ID

ListCVERules

Permalink

Request Example

curl -X GET '{host}/api/v1/security/cve-rules' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 1200,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history