Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,35 +1,52 @@
{
"schema_version": "1.4.0",
"id": "GHSA-h39j-r5qq-r9mm",
"modified": "2026-06-05T09:33:46Z",
"modified": "2026-06-05T09:33:53Z",
"published": "2026-06-05T09:33:46Z",
"aliases": [
"CVE-2026-10732"
],
"summary": "ZipSlip in decompress",
"details": "All versions of the package decompress are vulnerable to Arbitrary File Write via Archive Extraction (Zip Slip) when extracting a ZIP archive containing two entries with the same path - the first being a symlink to an arbitrary target and the second being a regular file - the file content is written through the symlink to the target location outside the output directory. This is due to the microtask processing order that checks readlink for the second file before resolving symlink for the first file. An attacker can write arbitrary file on the host filesystem potentially leading to remote code execution by providing a specially crafted ZIP archive.\n\n**Note:**\n\nThis bypasses all existing path traversal protections including preventWritingThroughSymlink, added as a part of the fix for [CVE-2020-12265](https://security.snyk.io/vuln/SNYK-JS-DECOMPRESS-557358).",
"severity": [
{
"type": "CVSS_V3",
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:H/A:L"
},
{
"type": "CVSS_V4",
"score": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/VC:L/VI:H/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X"
"score": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/VC:L/VI:H/VA:L/SC:N/SI:N/SA:N"
}
],
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "decompress"
},
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "0"
},
{
"last_affected": "4.2.0"
}
]
}
]
}
],
Comment on lines +17 to 37

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The latest version available is 4.2.0 and since the package is not maintained anymore, no version will be published soon

"affected": [],
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-10732"
},
{
"type": "WEB",
"url": "https://github.com/kevva/decompress/pull/112"
"url": "https://github.com/Alemmi/cve/tree/main/CVE-2026-10732"
},
{
"type": "WEB",
"url": "https://gist.github.com/Alemmi/409c3cc148c39522c6d6a8538b0e1f9e"
"type": "PACKAGE",
"url": "https://github.com/kevva/decompress/blob/master/index.js"
},
Comment on lines 44 to 50
{
"type": "WEB",
Expand All @@ -38,7 +55,8 @@
],
"database_specific": {
"cwe_ids": [
"CWE-29"
"CWE-29",
"CWE-59"
],
"severity": "MODERATE",
"github_reviewed": false,
Expand Down