---
id: CVE-2026-76845
aliases:
  - GHSA-vwc7-r8mq-g2x9
title: >-
  adm-zip extraction follows destination symlinks, allowing arbitrary file
  overwrite
summary: >-
  adm-zip extraction follows destination symlinks, allowing arbitrary file
  overwrite
severity: medium
cvss: 6.5
cwe:
  - CWE-59
vendor: adm-zip
product: adm-zip
ecosystem: npm
affected:
  - 'adm-zip >= 0.5.9, <= 0.6.0'
published: '2026-08-24'
updated: '2026-09-08'
sourceUpdated: '2026-09-08T21:20:42Z'
source: GHSA
sourceUrl: 'https://github.com/advisories/GHSA-vwc7-r8mq-g2x9'
references:
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2026-76845'
  - url: 'https://github.com/cthackers/adm-zip'
  - url: 'https://github.com/cthackers/adm-zip/blob/v0.6.0/util/utils.js'
  - url: >-
      https://www.vulncheck.com/advisories/adm-zip-through-arbitrary-file-overwrite-via-symlink-following-on-extraction
  - url: 'https://github.com/cthackers/adm-zip/issues/574'
  - url: 'https://github.com/cthackers/adm-zip/pull/575'
  - url: 'https://github.com/advisories/GHSA-vwc7-r8mq-g2x9'
tags:
  - ghsa
  - npm
epss: 0.00131
epssPercentile: 0.03091
ingestedAt: '2026-09-08T22:12:30.968Z'
---

## Overview

adm-zip 0.5.9 through 0.6.0 follows symbolic links at the extraction destination. Utils.sanitize in util/utils.js enforces containment by comparing only the string form of an archive entry name against the resolved extraction root, and Utils.writeFileTo opens the computed destination with fs.openSync(path, "w", 0o666), which resolves symbolic links and carries neither O_NOFOLLOW nor a pre-write fs.lstatSync check. When a path component at the destination already exists as a symbolic link pointing outside the extraction root, extractAllTo, extractAllToAsync and extractEntryTo write the entry contents through that link and then chmod its target, placing attacker-controlled content in a file outside the root without any traversal sequence appearing in the archive. Reaching the write requires overwrite to be enabled, because the preceding fs.existsSync check also resolves the link and otherwise declines. An attacker able to create a symbolic link inside a shared, reused or predictable extraction directory, such as a temporary directory or a continuous integration workspace, can overwrite any file the extracting process is permitted to write.

## Affected packages

- `adm-zip >= 0.5.9, <= 0.6.0`

## Remediation

Refer to the advisory for the patched release.
