latestOpenAPI 3.0.02026-08-0417295208.0 KB

6aef0cb7a151

channels
cves

Get all the CVE's associated with this subchannel

get/channels/{channel_name}/subchannels/{subchannel_name}/cves

Path parameters

channel_namestring required
subchannel_namestring required

Query parameters

offsetinteger

the offset of the result set

limitinteger

the number of results in the result set

statusCVEStatus[]

CVE artifact status (may be comma-separated)

min_scorenumber

Returns the CVE with at least provided minimum score

qstring

the string to search on

max_scorenumber

Returns files below requesed max_cve_score

architecturesstring[]

the package architectures list to search on

[
  "linux-64",
  "osx-64",
  "win-32",
  "win-64"
]
cve_namestring

the exact CVE id to search on

versionstring

Package Version

min_packages_countinteger

Returns the CVE with at least provided minimum score

artifactstring

package name to search on

sortstring[]

property to sort CVEs (may be comma-separated)

with_cve_counts_by_severityboolean

return cve counts by severity.

Response

successfully returns the CVE objects related to this channel

idstring
descriptionstring

Text description of the vulnerability from the database

scorenumber

Maximum score of the CVE

cvssv2_scorenumber

CVSSv2 score of the CVE

cvssv3_scorenumber

CVSSv3 score of the CVE

curatedboolean

Indicates whether CVE has curated status

packages_countnumber

Number of associated packages with this CVE

published_atstring

date when the CVE has been published in NVD

nvd_modified_atstring

latest date when the CVE was updated in NVD

anaconda_modified_atstring

latest date when the CVE was curated by Anaconda

nvdv2object
reviewsobject[]
cwesstring[]

Example response

[
  {
    "id": "CVE-2019-9948",
    "packages": [
      {
        "channel_name": "The Channel",
        "parent_channel_name": "The Root Channel",
        "artifact_type": "conda1",
        "ckey": "osx-64/numpy-1.1.1.conda",
        "common_name": "numpy",
        "blob_sha256": "82cf9c932145565158eb8ee67dba369851210aab"
      }
    ],
    "cvssv2": {
      "cvssV2": {
        "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:N",
        "accessComplexity": "LOW",
        "accessVector": "NETWORK",
        "authentication": "NONE",
        "availabilityImpact": "NONE",
        "confidentialityImpact": "PARTIAL",
        "integrityImpact": "PARTIAL"
      },
      "exploitabilityScore": 10,
      "impactScore": 6.5,
      "severity": "MEDIUM"
    },
    "cvssv3": {
      "cvssV3": {
        "attackComplexity": "LOW",
        "attackVector": "NETWORK",
        "availabilityImpact": "NONE",
        "baseSeverity": "CRITICAL",
        "confidentialityImpact": "HIGH",
        "integrityImpact": "HIGH",
        "privilegesRequired": "NONE",
        "scope": "UNCHANGED",
        "userInteraction": "NONE",
        "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N"
      },
      "exploitabilityScore": 10,
      "impactScore": 6.5
    }
  }
]