GHSA-p498-v437-472g: Path Traversal

Published Sep 2, 2026
·
Updated

Summary

@humanfs/node does not treat symlinks as a separate case during copy operations. A symlink placed inside an attacker-controlled source tree can make copyAll() read and copy the contents of any file readable by the process, even when that file is outside the directory being copied.

Details

The Node implementation exposes symlink state through list(), but copyAll() ignores it. During recursive copies, every non-directory entry is passed to copy(), which delegates to fs.promises.copyFile().

On Node, copyFile() dereferences symlinks. As a result, a symlink inside the copied tree is handled as if it were an ordinary file, and the destination receives the contents of the symlink target rather than a copy of the link itself.

That breaks the expected boundary of a directory copy. A caller can point copyAll() at a seemingly self-contained directory and still end up copying data from elsewhere on the host filesystem if the source tree contains attacker-supplied symlinks.

The same dereference behavior also affects copy() when the source path itself is a symlink.

PoC

js import { NodeHfs } from "@humanfs/node"; import fs from "node:fs/promises"; import path from "node:path"; import os from "node:os";

const root = await fs.mkdtemp(path.join(os.tmpdir(), "humanfs-")); const src = path.join(root, "src"); const dst = path.join(root, "dst"); const secret = path.join(root, "secret.txt");

await fs.mkdir(src); await fs.writeFile(secret, "TOPSECRET"); await fs.symlink(secret, path.join(src, "link.txt"));

const hfs = new NodeHfs(); await hfs.copyAll(src, dst);

console.log(await fs.readFile(path.join(dst, "link.txt"), "utf8")); // TOPSECRET

Impact

If an application uses copyAll() or copy() on attacker-controlled paths, a symlink can be used to pull arbitrary readable host files into the copied output. In practice, that can turn a normal workspace copy, export, or packaging step into a file disclosure primitive.

Affected Software

1 affected componentFixes available
npm/@humanfs/node<0.16.8
0.16.8

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade npm/@humanfs/node to a version that resolves this vulnerability.

    Fixed in 0.16.8

Event History

Sep 2, 2026
Advisory Published
via GitHub·02:27 PM
Data Sourced
via GitHub·02:27 PM
DescriptionWeaknessAffected Software

Frequently Asked Questions

1

Who is exposed to this issue?

Applications using the Node implementation of @humanfs/node are exposed when they copy a source directory or source path that an attacker can populate with symlinks. The impact is limited to files that are readable by the process performing the copy.

2

What does an attacker need to exploit it?

An attacker needs to place a symlink in an attacker-controlled source tree processed by copyAll(), or cause copy() to be called with a symlink as its source path. The symlink must target a file elsewhere on the host that the copying process can read.

3

How can I determine whether my application is affected?

Review uses of NodeHfs copyAll() and copy() for source paths that may contain untrusted or attacker-supplied files. Affected behavior occurs when a symlink is copied: the destination receives the target file's contents rather than the symlink itself.

4

What behavior should be avoided until the issue is addressed?

Do not use copyAll() or copy() on source paths that may contain untrusted symlinks, especially when the copying process has access to sensitive files outside the source directory. Treat a source tree as unsafe unless symlinks are excluded or otherwise controlled before copying.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203