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

推荐订阅源

美团技术团队
IT之家
IT之家
博客园 - Franky
博客园_首页
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed

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
An Introduction to SSRF Bypasses and Denylist Failures
2025-03-05 · via NodeJS Security & NodeJS Secure Coding's Blog

I recently disclosed several vulnerabilities (CVE) that exposed critical SSRF bypasses in popular npm packages. What can you learn from the mistakes those maintainers made? what are some weak code patterns that introduce an SSRF? Let’s dive in.

What’s SSRF? In short, A server-side request forgery (SSRF) vulnerability happens when the Node.js application makes unintended server requests from the Node.js backend to other servers (internal or external), based on user-controlled input. Attackers can then exploit this behavior to trick the vulnerable Node.js application into fetching all kinds of server resources and potentially accessing unauthorized actions which don’t need authentication (think about internal servers, sidecars, etc).

SSRF Denylists

Denylists are often frowned upon in the security domain because they are too brittle and can be easily bypassed or made obsolete with new attack vectors (and trust that an adversarial will not stop looking for them).

Let’s see some use-cases that denylists fail miserably with protecting against SSRF attacks:

Deny the 127.0.0.0/8 subnet

The IP address 127.0.0.1 is often used as a localhost address. Technically speaking, the entire IP address range comprising of the address space between 127.0.0.1 to 127.255.255.255 is reserved for the loopback (the localhost) address.

As such, it might seem like a good idea to check if the hostname simply begins with a ‘127’ character set such as the following code snippet:

if (hostname.startsWith('127')) {

return 'Private';

}

However, what if a hostname starts with the number ‘127’? For example, users are free to buy domain names such as 127-my-local-domain.com. In this case, the above code snippet would incorrectly classify the domain provided by the user as a private IP address / hostname.

Deny the 172.16 address range

A common localhost reserved address space is 172.16.0.0. Details matter though. While we see a lot of IP addresses starting with the string 172.16. the actual address space is not a limited to that of all the addresses within the /16 address space. Meaning, the “last” address in that space ends at 172.16.255.255 ? Not really.

The actual address space for loopback IP address spaces is limited to the scope of the following subnet definition: 172.16.0.0/21 which yields addresses starting from 172.16.0.0 and all the way up to 172.31.255.255. This makes it a bit more tricky to check for an IP address within the range as it involves a little bit more string parsing and manipulation if you want to keep things simple and not use binary conversions and other mathematical ways to approach the problem.

Common SSRF Bypasses

  1. resolve localtest.me which resolves to 127.0.0.1
  2. not including the multicast address space (224.0.0.0/4 and ff00::/8) which allows for this:

'http://239.255.255.250:1900' // Common SSDP discovery address

  1. hex encoded 127.0.0.1 such as:

console.log(ip.isPublic("0x7f.1"));

  1. variations such as:

127.1, 127.0.1, 127.00.0x1, 127.0.0x0.1

01200034567

012.1.2.3

fe80::0001, 000:0:0000::01, 000:0:0000:0:000:0:00:001

::fFFf:127.0.0.1

So, ultimately, do not allow redirects in HTTP requests.

For example, you approve some-domain.com which resolves to public IP but the GET request ends up with a redirect to a local IP address that isn’t checked because only the initial domain was checked. Solve this by disallowing redirects follow or by including SSRF at each socket connection made by the HTTP layer.