---
id: CVE-2026-80426
title: FiftyOne renders a dataset field's description as markup
summary: >-
  FiftyOne renders a dataset field's description as markup. The sidebar
  field-information component at
  app/packages/core/src/components/FieldLabelAndInfo/index.tsx passes the
  description string to React's dangerouslySetInnerHTML, and no la…
severity: high
cvss: 7.1
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:L/A:N'
cwe:
  - CWE-79
published: '2026-08-26'
updated: '2026-09-24'
sourceUpdated: '2026-09-24T20:43:32.537'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-80426'
references:
  - url: 'https://github.com/voxel51/fiftyone'
    label: disclosure@vulncheck.com
  - url: >-
      https://github.com/voxel51/fiftyone/blob/v1.20.1/app/packages/core/src/components/FieldLabelAndInfo/index.tsx
    label: disclosure@vulncheck.com
  - url: 'https://github.com/voxel51/fiftyone/pull/8117'
    label: disclosure@vulncheck.com
  - url: 'https://github.com/voxel51/fiftyone/releases/tag/v1.21.0'
    label: disclosure@vulncheck.com
  - url: >-
      https://www.vulncheck.com/advisories/fiftyone-before-1.21.0-stored-cross-site-scripting-via-unescaped-field-description
    label: disclosure@vulncheck.com
tags:
  - nvd
epss: 0.0041
epssPercentile: 0.32614
ingestedAt: '2026-09-24T20:51:40.231Z'
---

## Overview

FiftyOne renders a dataset field's description as markup. The sidebar field-information component at app/packages/core/src/components/FieldLabelAndInfo/index.tsx passes the description string to React's dangerouslySetInnerHTML, and no layer between storage and render escapes or sanitises it; the neighbouring info values in the same component are rendered as React children and are escaped, so the description is the only raw path. A description is free-form text held in the dataset schema, so it persists in the database and travels with an exported or published dataset. Opening a dataset obtained from another party and hovering the field runs the stored markup in the application's origin. That origin is shared with the FiftyOne server, whose media route returns the contents of a caller-named absolute path and which is unauthenticated in the open-source server, so the injected script can read local files and reach the dataset and operator endpoints as the viewing user.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
