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

推荐订阅源

D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
IT之家
IT之家
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research

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
Is Node.js Secure?
2024-09-09 · via NodeJS Security & NodeJS Secure Coding's Blog

Many ask me “Is Node.js secure?” with the aim of comparing the Node.js runtime with Rust, Go, Java or maybe Deno and Bun. The answer though is a bit more complex than a simple yes or no.

Node.js security is a complex topic. While the core runtime itself has a well-defined threat model that excludes certain attack vectors (like prototype pollution due to JavaScript language structure), it relies on secure coding practices and a layered security approach to mitigate various risks.

The Node.js Threat Model

The Node.js threat model outlines the boundaries of the runtime’s responsibility for security. It defines the scope of vulnerabilities that Node.js itself is responsible for addressing, as well as those that are primarily the responsibility of application developers or other components.

So while the Node.js runtime is designed to be secure in its core functionalities, it also assumes other components and some behavior like the underlying operating system and third-party modules are secure as well, which is not always the case.

Node.js is designed with security controls in mind and being resistant to certain types of vulnerabilities, but it still primarily trusts userland code (the developer’s code) and good coding practices. Think of it like a sturdy house: even if the foundation is strong, the walls, roof, and furnishings can still be vulnerable if they’re not built or maintained properly.

As a practical code reference in Node.js core, I recently provided a patch to address a prototype pollution vulnerability in the child_process core module:

validateArgumentsNullCheck(args, 'args');

if (options === undefined)

options = kEmptyObject;

else

validateObject(options, 'options');

options = { __proto__: null, ...options };

let cwd = options.cwd;

// Validate the cwd, if present.

if (cwd != null) {

cwd = getValidatedPath(cwd, 'options.cwd');

}

// Validate detached, if present.

if (options.detached != null) {

validateBoolean(options.detached, 'options.detached');

}

This PR adds a (failing) test case that confirms the issue and follows-up with a fix for the bug in child_process functions to ensure consistent behavior. However, this is not considered a security vulnerability by the Node.js project because the Node.js threat model does not recognize prototype pollution as a viable security vulnerability in the runtime.

Developers play a crucial role in Node.js security. They’re responsible for writing secure code, validating user input, and handling errors correctly. Likewise, third-party modules installed and imported via the npm registry can introduce security risks. Many Node.js applications rely on external libraries and packages to build their applications. While these can save you time and effort, they can also introduce vulnerabilities if they’re not well-maintained or have security flaws.

In a prior article I also explored the Node.js Threat Model and Permissions Model for a broader understanding of how Node.js handles security and publishing Node.js security releases.

Denial of Service (DoS) Attacks in Node.js

Node.js’s single-threaded event loop model, while efficient for many use cases and providing optimal performance results for I/O bound applications, can be susceptible to denial-of-service (DoS) attacks.

A well-crafted request, such as one with a complex regular expression, can overload the event loop, rendering the application unresponsive.

const http = require('http');

http.createServer((req, res) => {

// Handle the request, potentially involving a complex regular expression

// or computationally intensive task

// e.g:

const regex = /([a-z]+)+$/;

const input = 'aaaaaaaaaaaaaaaaaaaaaaaa!';

if (regex.test(input)) {

res.end('Matched');

} else {

res.end('No match');

}

res.end('Hello, world!');

}).listen(3000);

As a developer, responsible for userland code, you’d want to put security controls that mitigate the risk of DoS attacks in a Node.js application. For example, considering the following:

  • Rate Limiting: Implement rate limiting to restrict the number of requests per unit of time. For example, consider using an SDK such as one provided by Arcjet which adds middlewares to your web framework to rate limit requests.
  • Timeout Mechanisms: Set appropriate timeouts for requests to prevent long-running operations from blocking the event loop. For example, consider watchdog mechanism around RegEx operations and running them off the main event-loop thread.
  • Asynchronous Operations: Whenever possible, use asynchronous operations to avoid blocking the event loop. For example, consider using the worker_threads module to offload CPU-intensive tasks to worker threads.

Node.js Path Traversal Vulnerabilities

Path traversal vulnerabilities can occur when untrusted input is insecurely processed by the application to generate file system paths. This can lead to an attacker accessing files outside the intended directory, potentially exposing sensitive information or executing malicious code.

import fs from 'fs';

import path from 'path';

const pathPrefix = '/var/www/uploads/';

const userProvidedImagePath = '../../../../etc/passwd';

const imagePath = path.join(pathPrefix, userProvidedImagePath);

// Insecurely evaluating user-provided input

fs.readFile(imagePath, (err, data) => {

if (err) {

console.error(err);

} else {

res.send({

image: data.toString('base64')

});

}

});

Secure Coding Practices in Node.js

Secure coding practices are indispensable for Node.js developers and provide the first-line of defense in their applications from a myriad of vulnerabilities. By adhering to these practices, developers can significantly reduce the risk of attacks, protect sensitive data, and maintain the integrity of their applications.

Consider aspects such as the following to improve the security of your Node.js applications:

  • Input Validation: strict validation of user input to prevent malicious data from entering your application, and sanitize input to remove potentially harmful characters or code.
  • Output Encoding: encode output data to prevent cross-site scripting (XSS) attacks, code injection and other forms of injection attacks.
  • Safe and secure use of JSON parsing and deep cloning to prevent prototype pollution attacks.
  • Avoiding code serialization completely (e.g: new Function(), eval() and other forms of dynamic code execution) to prevent code injection attacks.

Conclusion

In conclusion, the question on whether Node.js is a secure runtime or not is a nuanced and multifaceted topic. It’s not just about the core runtime, but also about how the runtime is used - for example: are you referring to using Node.js as a CLI, a desktop application (hi Electron!), or a web application? Each of these use cases has its own security considerations.

In addition, the security of your Node.js applications depends on the code you write, the third-party modules you use, and your awareness of the latest threats. By understanding these factors and taking appropriate measures, you can build secure Node.js applications.