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

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog

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
To IDOR or Not to IDOR: Insecure Direct Object Reference ...
2024-05-08 · via NodeJS Security & NodeJS Secure Coding's Blog

I’ll open up with an interesting anecdote.

The first and only known security vulnerability that was reported of an Insecure Direct Object Reference (IDOR) was to the @clerk/nexjs package. The vulnerability was reported by a security researcher and assigned CVE-2024-22206, on January 12th, 2024.

Given that there are more than 3,000 vulnerabilities attributed to npm packages, this is an interesting case to study, somewhat unsurprising because IDORs are commonly due to fault logic in the application code, rather than a vulnerability in the package itself. It’s often to find IDORs in applications, but not so much in discrete library code.

What is Insecure Direct Object Reference (IDOR) ?

In the context of web applications, IDOR stands for Insecure Direct Object Reference. It’s a security vulnerability that arises when an application uses predictable elements to access data or perform actions, without properly verifying if the user making the request is authorized to do so.

So what’s the problem with IDOR vulnerabilities ?

  • Unauthorized Access: An attacker can manipulate these predictable elements (like ids in URLs) to gain access to data or functionality they shouldn’t have. Imagine a shopping cart application where users can only view their own cart. An IDOR vulnerability could allow someone to see another user’s cart contents by tweaking the user ID in the URL. A real-world case of IDOR was present in Facebook and even not so long ago in Tinder’s match making application.

  • Data Breaches: Sensitive user information like financial details, personal documents, or private messages could be exposed if accessed by unauthorized users through IDOR vulnerabilities. So in terms of risk, the impact of an IDOR vulnerability can be quite severe and impact an actual business or user.

  • Privilege Escalation: In some cases, attackers might exploit IDOR to gain higher privileges within the system. This could be particularly dangerous in administrative sections of an application. For example, an attacker could change the id in the URL to access an admin user’s profile and then change the password to take over the account.

Do you believe that security is everyone’s responsibility? even if you’re primarily a front-end developer, security should be a concern for everyone working on a web application. Understanding IDOR helps you write code that doesn’t introduce vulnerabilities unintentionally. IDOR vulnerabilities can have serious consequences for both users and the application itself.

How to prevent Insecure Direct Object Reference (IDOR) ?

What’s JavaScript role in IDOR vulnerabilities ?

While IDOR vulnerabilities often stem from server-side logic, JavaScript plays a part too. JavaScript code might be responsible for:

  • Constructing URLs or file paths containing user IDs.
  • Making requests to the server with these IDs.

So perhaps when relying on the above, server-side and client-side code makes assumption (such as the user is already authenticated) and skips proper authorization checks. This is where IDOR vulnerabilities can creep in.

When it comes to the server-side code, whether in Node.js, Bun, or Deno, the following are important to prevent IDOR vulnerabilities:

  • Server-side Validation: Always validate user IDs and other object references on the server-side before granting access to data or performing actions. This ensures proper authorization checks are in place.

  • Don’t Trust User Input: Never blindly trust data received from the user (including URLs or IDs). Sanitize and validate all user input before using it to construct requests or access resources.

  • Use Secure Libraries: If you’re using libraries or frameworks for authentication or authorization, make sure they handle IDOR concerns properly. Stay updated on any security vulnerabilities reported in these libraries.

Imagine a Next.js application using @clerk/nextjs for authentication. The application allows users to view their profile information. Here’s how an IDOR vulnerability could occur:

  1. A user logs in and is directed to their profile page with a URL like http://localhost:3000/profile/123 (where 123 is the user’s unique ID). The application retrieves and displays the user’s profile data based on the ID in the URL.

  2. An attacker intercepts the user’s profile URL (http://localhost:3000/profile/123). The attacker modifies the user ID in the URL to another user’s ID (e.g., http://localhost:3000/profile/456). If the application lacks proper ID verification, the attacker might be able to access the profile information of user ID 456, which could be sensitive data.

This is a simplified example, but it highlights how an attacker could leverage predictable URL structures and a lack of ID verification to access unauthorized resources. This is in fact, a real-world example of an IDOR vulnerability discovered in the popular Clerk library for Next.js (now patched).

There’s a further in-depth Node.js code example and references on how to secure JavaScript code to avoid Insecure Direct Object References (IDOR) on the Node.js Security blog.

How to test for Insecure Direct Object Reference (IDOR) ?

Manually testing might cover identifying predictable elements such as looking for areas in your application where user IDs or other object references are used directly in URLs, form submissions, or API requests. These are potential areas for IDOR exploitation.

A rather proactive approach is to attempt to modify user input that stems from user-controlled elements (like IDs in URLs) and observe the application’s behavior. Can you access data or functionalities you shouldn’t have permission for? If so, you might have an IDOR vulnerability.

When automation comes to frame, tools like OWASP ZAP, Burp Suite, or even custom scripts can help identify IDOR vulnerabilities in your application. These tools can scan your application for potential IDOR issues and provide insights into how to fix them. Here are some more points to consider when hunting for IDORs:

What’s next?

Have you ever encountered an IDOR vulnerability in your application? How did you fix it? Reach out and share your experiences and tips for preventing IDOR vulnerabilities, I’d love to learn!