> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# anaconda repo cves

export const GCell = ({children, className}) => <div className={`grid-table-cell ${className || ""}`} role="cell">
    {children}
  </div>;

export const GTH = ({children, className}) => <div className={`grid-table-th ${className || ""}`} role="columnheader">
    {children}
  </div>;

export const GRow = ({children}) => <div className="grid-table-row" role="row">{children}</div>;

export const GBody = ({children}) => <div className="grid-table-body" role="rowgroup">{children}</div>;

export const GHead = ({children}) => <div className="grid-table-head" role="rowgroup">{children}</div>;

export const GTable = ({children, className, cols}) => <div className={`grid-table not-prose overflow-hidden rounded-2xl ${className || ""}`} style={{
  "--grid-table-cols": cols
}} role="table">
    {children}
  </div>;

## Usage

```bash theme={null}
anaconda repo cves [OPTIONS]
```

## Description

Access Common Vulnerabilities and Exposures (<Tooltip tip="A public identifier for a known security flaw in software, used to track and assess vulnerabilities.">CVEs</Tooltip>) information for repository packages. List CVEs, show details for a specific CVE, or show affected files for a CVE.

## Options

<GTable cols="25% 25% 50%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Default</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`--list`</GCell>

      <GCell />

      <GCell>List all CVEs for the user</GCell>
    </GRow>

    <GRow>
      <GCell>`--show <CVE>`</GCell>

      <GCell />

      <GCell>Show details about a CVE</GCell>
    </GRow>

    <GRow>
      <GCell>`--show-files <CVE>`</GCell>

      <GCell />

      <GCell>Show files affected by a CVE (use with -o/-l for pagination)</GCell>
    </GRow>

    <GRow>
      <GCell>`-o, --offset <#>`</GCell>
      <GCell>`0`</GCell>
      <GCell>Offset when displaying results</GCell>
    </GRow>

    <GRow>
      <GCell>`-l, --limit <#>`</GCell>
      <GCell>`20`</GCell>
      <GCell>Limit when displaying results</GCell>
    </GRow>

    <GRow>
      <GCell>`-h, --help`</GCell>

      <GCell />

      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>

<Tip>
  CVE identifiers use the format `CVE-YYYY-NNNNN` (for example, `CVE-2026-12345`).
</Tip>

## Examples

**List CVEs**

```bash theme={null}
anaconda repo cves --list
```

**Show details for a CVE**

```bash theme={null}
anaconda repo cves --show CVE-2026-12345
```

**Show affected files with pagination**

```bash theme={null}
anaconda repo cves --show-files CVE-2026-12345 --limit 50 --offset 0
```
