appsec.fyi

Insecure Direct Object Reference (IDOR) Resources

Post Share

A curated AppSec resource library covering XSS, SQLi, SSRF, IDOR, RCE, XXE, OSINT, and more.

Insecure Direct Object Reference (IDOR)

Insecure Direct Object Reference (IDOR) is a vulnerability that arises when attackers can access or modify objects by manipulating identifiers used in a web application's URLs or parameters. It occurs due to missing access control checks, which fail to verify whether a user should be allowed to access specific data.

IDOR vulnerabilities are among the most common and impactful bugs found in bug bounty programs. They typically appear in API endpoints that reference database objects by predictable IDs — user profiles, invoices, messages, or files. An attacker simply changes an ID parameter (e.g., /api/users/1234 to /api/users/1235) to access another user's data. The impact ranges from information disclosure to full account takeover, depending on the affected endpoint.

Common patterns include sequential integer IDs in REST APIs, UUID leakage through other endpoints, and GraphQL queries that expose object references without authorization checks. Prevention requires server-side access control on every request — never relying on obscurity of identifiers alone.

This page collects writeups, tutorials, and tools for finding and exploiting IDOR vulnerabilities, from basic parameter tampering to advanced techniques like BOLA (Broken Object Level Authorization) in modern APIs.

From OWASP

Read the IDOR guideA long-form, source-cited deep dive synthesized from every resource below. The comprehensive IDOR guide on chs.usA hand-written, in-depth practitioner guide — attacks, testing, and prevention.
Date Added Link Excerpt
2026-07-30 2026Account Takeover Across Multiple Programs via Featurebase Integration intermediate 2 min read AuthZ Bug BountyWriteup detailing an IDOR vulnerability in the Featurebase feedback platform, leading to account takeover (ATO). The issue stems from Featurebase trusting client-controlled identity attributes without validation, allowing attackers to impersonate other users by modifying `userId` in API requests or changing user profiles and obtaining access tokens. The author notes Featurebase's stance that this is a website owner's responsibility to fix, but suggests JWT for securing installations. → infosecwriteups.com
2026-07-29 2026Unprotected admin functionality — PortSwigger Access control vulnerabilities Lab 1 beginner 2 min read AuthZ Bug BountyWriteup detailing the exploitation of Broken Access Control (BAC-Portswigger-001) in a PortSwigger lab, where an unprotected administrator panel was discoverable via the `robots.txt` file. An unauthenticated attacker can access the `/administrator-panel` endpoint, allowing sensitive actions like deleting user accounts, leading to full application compromise. Remediation involves enforcing authentication, implementing authorization checks, and avoiding reliance on `robots.txt` for security. → infosecwriteups.com
2026-07-29 2026How I found an IDOR in Google Classroom on Day 3 of my Hunting? beginner 3 min read API Sec Bug BountyWriteup detailing an Insecure Direct Object Reference (IDOR) vulnerability discovered in Google Classroom. The vulnerability stemmed from the `batchexecute` system, an undocumented internal RPC protocol. By manipulating `submission ID` parameters within POST requests to the `batchexecute` endpoint, an attacker could post private comments to any student's assignment submission, bypassing intended authorization controls and making the comment visible to the student and teacher. The writeup also explains how submission IDs were discoverable through traffic analysis. → infosecwriteups.com
2026-07-28 2026LetsDefend: SOC169 — Possible IDOR Attack Detected (Walkthrough) intermediate 6 min read API SecWalkthrough of an Insecure Direct Object Reference (IDOR) attack detected by LetsDefend's SOC169 alert. The investigation details how an external IP address enumerated user IDs by sending consecutive POST requests to the `/get_user_info/` endpoint, receiving HTTP 200 OK responses with varying sizes, indicating successful unauthorized access to multiple user records. The analysis confirms the attack was a true positive, revealing an application-layer authorization flaw rather than endpoint compromise. → infosecwriteups.com
2026-07-26 2026PentesterFlow - AI Tool for Penetration Testers and Bug Hunters to Automate Workflows intermediatePentesterFlow is an AI-powered tool designed to automate workflows for penetration testers and bug hunters. It aims to streamline various tasks, enhancing efficiency in security assessments. → cybersecuritynews.com
2026-07-23 2026Meta Paid $78000 Bounty for Vulnerability Exposing Customer Support Data news 1 min readWriteup details a critical vulnerability in Meta's customer support infrastructure, resulting in a $78,000 bug bounty for researcher Rony K Roy. The flaw, involving missing authorization, broken access control, and insecure direct object reference (IDOR), could have exposed user conversations, personal information, and allowed for manipulation of support cases within Meta Horizon Managed Solutions. → securityweek.com
2026-07-23 2026Critical Meta IDOR Flaw Let Attackers Access Customer Support Cases newsA critical Insecure Direct Object Reference (IDOR) vulnerability was discovered in Meta's customer support system. This flaw allowed unauthorized attackers to access sensitive customer support case details. The vulnerability, if exploited, could have exposed private user information. The discovery highlights a significant security weakness within Meta's platform, potentially impacting user privacy and trust. → cyberpress.org
2026-07-22 2026Critical SolarWinds Serv-U Vulnerabilities Allow Remote Code Execution as Root newsCritical vulnerabilities have been discovered in SolarWinds Serv-U software, enabling attackers to achieve remote code execution with root privileges. This means malicious actors could potentially gain complete control of affected systems. The severity of these flaws highlights a significant security risk for organizations using this software. Further details can be found at the provided link. → cyberpress.org
2026-07-18 2026The $0 IDOR That Was Worth More Than a $12,500 P1 intermediate 1 min read Bug BountyWriteup analyzing Insecure Direct Object Reference (IDOR) vulnerabilities, contrasting a GraphQL alias abuse bug that garnered a $12,500 bounty with an IDOR exposing all user data for over three years that received $0. The analysis highlights how true impact, beyond proof-of-concept screenshots, dictates bug bounty payouts, noting the latter IDOR was triaged as "Informative" and remained exploitable for years. → infosecwriteups.com
2026-07-18 2026How I Found a Cross-Student IDOR in Academy LMS That Leaked Correct Quiz Answers intermediate 8 min read AuthZWriteup of a Cross-Student IDOR vulnerability in Academy LMS plugin, affecting over 2,000 installations. The vulnerability, discovered by analyzing the plugin's API controllers, allowed any enrolled student to view another student's quiz results and obtain correct answers. This was achieved by exploiting two authorization failures in the `get_student_quiz_attempt_details` endpoint, which incorrectly processed the `user_id` parameter from requests and evaluated access permissions against the target user's context rather than the caller's. → infosecwriteups.com
2026-07-07 2026Predicting MongoDB ObjectId() continuously in Rocket.Chat advanced 12 min readWriteup detailing a vulnerability in Rocket.Chat, #3687142, where unauthenticated users can access any uploaded file by predicting its MongoDB ObjectId(). The article explains how the ObjectId() is composed of a timestamp, machine/process ID, and a counter, allowing attackers to enumerate valid file IDs and bypass authorization checks through the Livechat functionality. → aikido.dev
2026-06-20 2026Breaking Down Two Simple Vulnerabilities That Exposed A School’s Admission Records beginner Bug BountySecurity researchers discovered data-exposure vulnerabilities on a school's website, revealing sensitive admission records containing PII like names, emails, and addresses. The `/print-form.php?app_number=` endpoint was vulnerable to Insecure Direct Object Reference (IDOR), allowing access to records by manipulating application numbers. → infosecwriteups.com
2026-06-19 2026Build an IDOR Vulnerability Lab: Why WHERE Clauses Don’t Protect Your API. intermediate API SecLast time we covered SQL injection . I promised IDOR was next. Today you are going to see why a WHERE clause alone will not save you. When you learn about backend APIs feeding your frontend, you are r... → infosecwriteups.com
2026-06-19 2026“Bug Bounty Bootcamp #47: Account Takeover 101 — How to Steal Everyone’s Account (Legally)” beginner AuthZThis article, "Bug Bounty Bootcamp #47: Account Takeover 101," explains that hackers don't need advanced skills to achieve account takeovers. Common vulnerabilities like Insecure Direct Object References (IDOR), insecure invite links, or misconfigured "role" fields can be exploited. The piece encourages readers to learn these techniques legally through bug bounty programs. No specific payout amount is mentioned. → infosecwriteups.com
2026-06-12 2026Hacking a Fortune 500 Finance Company via Envoy Proxy Misconfiguration intermediateA security researcher discovered a vulnerability at a Fortune 500 finance company by exploring their websites. While most domains required SSO credentials, a sister website accessible via Google Dorking allowed verified authors to publish articles. This avenue was initially used to understand the company's systems. The content doesn't mention a specific bug bounty payout amount. → infosecwriteups.com
2026-06-11 2026Researcher Used AI to Find $500000 Worth of Bugs Across Google's Internal APIs news 4 min readWriteup detailing how an AI-powered fuzzing pipeline, utilizing Anthropic's Claude and over 3,600 API keys extracted from 60,000 APKs, uncovered vulnerabilities across Google's internal APIs, including IDOR and broken access control. This systematic approach identified significant security flaws in services like Google Voice, AdExchange, YouTube's Content ID API, Widevine DRM, Eldar, PLX/DataHub, and Vertex AI Search, leading to over $500,000 in bug bounty payouts. The research highlights a pattern of exposed internal APIs and missing authorization checks.
2026-05-12 2026Max's Bug Bounty: Two Hundred Thirteen Flaws and Twenty-Two Million in Rewards news 1 min readAnalysis of Max's Bug Bounty program reveals over 213 vulnerabilities identified, with Insecure Direct Object Reference (IDOR) being the most prevalent. The program, which has paid out over 21.9 million rubles, highlights the effectiveness of bug bounty initiatives in improving application security.
2026-05-08 2026Dark Web Article Contest Offers $10K for Exploit Articles news 3 min readContest announcement on the TierOne dark web forum offers $10,000 for exploit articles, covering topics like RCE via deserialization in React/Node.js, command injection, IDOR in SaaS, SSTI, firmware attacks on routers/cameras, and privilege escalation in RouterOS. Submissions require original content on vulnerability exploitation, with prizes awarded for the best technical write-ups on topics including zero-day browser discoveries and AV/EDR bypass techniques. → thecyberexpress.com
2026-04-22 2026New Types of Hacking: IDOR Attacks Evolved advancedNew Types of Hacking: IDOR Attacks Evolved
2026-04-22 2026Hunting for IDOR and BAC in B2B Apps with Burp Authorize intermediateHunting for IDOR and BAC in B2B Apps with Burp Authorize
2026-04-22 2026IDOR in the Wild: What CVE-2025-13526 Teaches Security Engineers news 9 min readWriteup analyzing CVE-2025-13526, an Insecure Direct Object Reference (IDOR) in a WordPress plugin, highlights how attackers can exploit simple parameter manipulation to access unauthorized data. The article details the mechanics of IDOR, linking it to OWASP API1 (Broken Object Level Authorization) and CWE-639, and emphasizes its prevalence due to rapid development, testing biases, and scattered authorization logic, particularly in the API and AI-driven security landscape. Practical fixes involve centralizing authorization checks and verifying ownership of accessed objects. → penligent.ai
2026-04-22 2026CVE-2025-14371: TaxoPress IDOR / Object-Level Authorization Bypass news 4 min readWriteup of CVE-2025-14371 affecting TaxoPress, detailing an object-level authorization bypass allowing authenticated users with Contributor+ roles to add or remove tags on posts they do not own. This IDOR vulnerability manipulates content integrity by altering search relevance, internal navigation, feeds, and SEO, enabling attackers to reshape content discovery and editorial placement without direct post editing capabilities. The flaw in `modules/taxopress-ai/classes/TaxoPressAiAjax.php` fails to perform a per-object permission check (`current_user_can( 'edit_post', $post_id )`).
2026-04-22 2026IDOR-Scanner: Burp Suite Extension for Automated IDOR Detection intermediate 3 min readExtension for Burp Suite that automatically detects Insecure Direct Object Reference (IDOR) vulnerabilities. It passively scans HTTP requests and responses for numeric fields in URL paths, query parameters, JSON, and form data. Actively, it increments these numeric fields, sending modified requests to identify confirmed IDORs by checking for differing response sizes and 200 OK statuses. An option to right-click and scan specific issues is also provided.
2026-04-22 2026GraphQL IDOR Vulnerabilities: What They Are and How to Fix beginner 8 min readLibrary focusing on preventing Insecure Direct Object References (IDOR) in GraphQL APIs. It details how IDOR vulnerabilities arise from improper validation of object identifiers, allowing unauthorized data access. The resource highlights real-world examples like vulnerabilities in PayPal, Vimeo, and Shopify, and provides practical advice on implementing strong authentication and strict authorization checks within GraphQL resolvers to mitigate these risks. → escape.tech
2026-04-22 2026CVE-2025-64431: IDOR in ZITADEL Organization API Allows Cross-Tenant Tampering newsLibrary for detecting CVE-2025-64431, an Insecure Direct Object Reference (IDOR) vulnerability in ZITADEL's Organization V2Beta API. This flaw allows authenticated administrators in one organization to tamper with data in other organizations. The vulnerability is addressable through GitLab Dependency Scanning, which helps secure the software supply chain by identifying disclosed vulnerabilities in open-source dependencies. → advisories.gitlab.com
2026-04-22 2026OpenCTI GraphQL IDOR Allows Workspace Content Deletion news 1 min readLibrary for identifying and mitigating vulnerabilities in applications. This entry focuses on a GraphQL IDOR in OpenCTI (GHSA-pr6m-q4g7-342c) affecting its "WorkspacePopoverDeletionMutation." The flaw permits authenticated users to delete other users' workspace content, including dashboards and investigation cases, by bypassing ownership checks, leading to data loss and operational disruption.
2026-04-22 2026CVE-2025-2271: IDOR Vulnerability Detail newsCVE-2025-2271: IDOR Vulnerability Detail
2026-04-22 2026CVE-2025-1270: IDOR in h6web by Anapi Group newsLibrary for detecting and mitigating Insecure Direct Object Reference (IDOR) vulnerabilities, exemplified by CVE-2025-1270 in Anapi Group's h6web. This vulnerability allows authenticated attackers to access other users' information and impersonate them by manipulating the “pkrelated” parameter in the “/h6web/ha_datos_hermano.php” endpoint. Exploiting this IDOR can grant attackers elevated privileges for subsequent requests.
2026-04-19 2026IDOR Vulnerability Exploitation Guide — RedfoxSec beginner 7 min readGuide to Insecure Direct Object Reference (IDOR) vulnerabilities, a critical OWASP Top 10 risk. This resource details how IDORs occur when applications trust user-provided object references without proper authorization checks, enabling unauthorized access to sensitive data. It covers common exploitation techniques like incrementing integer IDs, predictable GUIDs, and path traversal with examples using tools like Burp Suite Intruder and `curl`. The guide also discusses horizontal and vertical IDOR, provides a methodology for discovery, and highlights the importance of testing PUT, DELETE, and PATCH requests, along with harvesting object references from API responses.
2026-04-19 2026Bykea: IDOR on In-App Hardcoded Zombie — HackerOne intermediateBykea: IDOR on In-App Hardcoded Zombie — HackerOne → hackerone.com
2026-04-19 2026IDOR Vulnerability — HackerOne Report 2633771 intermediateIDOR Vulnerability — HackerOne Report 2633771 → hackerone.com
2026-04-19 2026Top 235 IDOR Bug Bounty Reports beginnerTop 235 IDOR Bug Bounty Reports
2026-04-17 2026From Reset to Takeover: IDOR in Password Recovery Systems intermediateFrom Reset to Takeover: IDOR in Password Recovery Systems
2026-04-17 2026IDOR on Password Change to Full Account Takeover intermediateIDOR on Password Change to Full Account Takeover
2026-04-17 2026Vulnlab: IDOR Writeup (Ikhlasdansantai) intermediateVulnlab: IDOR Writeup (Ikhlasdansantai)
2026-04-17 2026Critical IDOR Vulnerability Leads to User Information Disclosure intermediateCritical IDOR Vulnerability Leads to User Information Disclosure
2026-04-17 2026API1:2019 - Broken object level authorization beginnerLibrary for preventing API1:2019 Broken Object Level Authorization (IDOR) vulnerabilities. It outlines how attackers substitute resource IDs to access unauthorized data, providing examples such as manipulating `/api/shop1/financial_info`. Prevention techniques include implementing user policy checks, avoiding reliance on client-sent IDs, verifying authorization for every request, and utilizing non-guessable IDs like UUIDs.
2026-04-17 2026A Beginner's Guide to IDOR Testing Methodology beginnerA Beginner's Guide to IDOR Testing Methodology
2026-04-17 2026Maximizing IDOR Detection with Burp Suite's Autorize intermediate 9 min readLibrary for Burp Suite's Autorize extension, this resource details how to leverage it for identifying Insecure Direct Object Reference (IDOR) vulnerabilities by automatically testing authorization with low-privileged user session cookies. It explains the extension's functionality, including its enforcement status detection and customizable filters for identifying authorization bypasses, and provides installation and usage instructions with examples against OWASP Juice Shop.
2026-04-17 2026Manual and semi-automated testing for IDORs using Burp Suite intermediate 3 min readLibrary for semi-automated and manual testing of Insecure Direct Object References (IDORs) using Burp Suite. It details how to leverage the Autorize plugin for automated checks by sending captured requests from different user contexts and offers a manual approach by identifying and manipulating object identifiers within Burp Suite's Repeater tool, referencing PortSwigger labs as an example.
2026-04-17 2026Testing for IDORs (PortSwigger Burp docs) beginner 2 min readLibrary for testing Insecure Direct Object References (IDORs), a common access control vulnerability where an application directly uses user-supplied input to access objects. This resource guides users through identifying potential IDORs in parameters, forwarding requests to Burp Intruder, configuring a Sniper attack with payload positions, and analyzing responses to confirm unauthorized access, using an example involving a user ID parameter. → portswigger.net
2026-04-17 2026IDOR Vulnerability Explained: Why IDOR Persists (Aikido) beginner 9 min readLibrary for identifying Insecure Direct Object References (IDORs), a prevalent vulnerability in modern, API-driven applications. This resource details how IDORs manifest in practice, why traditional testing methods and DAST tools often miss them, and the limitations of static analysis in detecting these contextual authorization failures. It highlights that IDORs, also known as Broken Object Level Authorization (BOLA) in APIs, persist due to evolving system design and the assumption of ownership rather than revalidation, leading to potential data breaches and unauthorized modifications. → aikido.dev
2026-04-17 2026How I Found a Critical IDOR Leading to Full Account Takeover intermediateHow I Found a Critical IDOR Leading to Full Account Takeover
2026-04-17 2026Exploiting IDOR Vulnerabilities: Prevent Account Takeover beginner 2 min readAnalysis of IDOR vulnerabilities demonstrates how attackers exploit Insecure Direct Object Reference flaws, often through manipulating parameters like `UserId` in HTTP requests identified with tools like Burp Suite or cURL, to achieve Account Takeover. Prevention strategies involve robust server-side checks, comparing session data with request parameters, and utilizing unpredictable identifiers such as UUIDs in database schemas. Logging suspicious activity with tools like Fail2Ban further strengthens defenses against these critical OWASP Top 10 threats. → undercodetesting.com
2026-04-17 2026A Journey from IDOR to Account Takeover (Payatu) intermediate 1 min readWriteup detailing an Insecure Direct Object Reference (IDOR) vulnerability leading to account takeover on pyrus.com. The attack exploits a flaw in the email change confirmation process where the UserID parameter can be manipulated to change a victim's email address. Subsequently, by initiating a password reset, the attacker can receive the reset token on their own email, thereby gaining full account control.
2026-04-17 2026Tackling IDOR on UUID based objects (PenTester Nepal) intermediateTackling IDOR on UUID based objects (PenTester Nepal)
2026-04-17 2026How an IDOR Vulnerability Led to User Profile Modification (HackerOne) intermediate 6 min readWriteup detailing an Insecure Direct Object Reference (IDOR) vulnerability found on mtnmobad.mtnbusiness.com.ng, which allowed remote users to modify account information including phone numbers. The vulnerability arose from the improper validation of account identifiers and exposed user data in HTTP requests and responses. The report highlights how easily identifiable parameters, such as short numerical IDs and email addresses, can be exploited by attackers using automated tools for unauthorized access and account takeover, emphasizing the need for robust access controls and cryptographically strong identifiers. → hackerone.com
2026-04-17 2026IDOR: Admin-to-Owner Account Takeover via Password Reset (StudioCMS) intermediate 2 min readWriteup of an IDOR vulnerability in StudioCMS allowing admin-to-owner account takeover. The POST /studiocms_api/dashboard/create-reset-link endpoint incorrectly allows any authenticated admin to generate a password reset token for any user, including the owner, without role hierarchy validation. This, combined with the POST /studiocms_api/dashboard/reset-password endpoint, enables a complete account takeover of the highest-privileged account in the system.
2026-04-17 2026Exploiting UUIDs in Account Takeover: Pentester's Guide intermediateExploiting UUIDs in Account Takeover: Pentester's Guide
2026-04-17 2026Top 25 IDOR Bug Bounty Reports (Cristian Cornea) intermediate Bug BountyTop 25 IDOR Bug Bounty Reports (Cristian Cornea) → corneacristian.medium.com

Frequently Asked Questions

What is an IDOR vulnerability?
IDOR (Insecure Direct Object Reference) is a type of access control vulnerability where an application exposes internal object references — such as database IDs, filenames, or user identifiers — without proper authorization checks. An attacker can manipulate these references to access other users' data.
How do you find IDOR vulnerabilities?
To find IDORs, look for predictable identifiers in API endpoints, URL parameters, and request bodies. Change IDs (numeric, UUID, or encoded values) to those belonging to other users and observe whether the application returns unauthorized data. Testing with two accounts simultaneously is the most effective approach.
What is the difference between IDOR and BOLA?
BOLA (Broken Object Level Authorization) is the API-specific term for IDOR, used in the OWASP API Security Top 10. Both describe the same core issue: missing authorization checks when accessing objects by reference. BOLA is the preferred term when discussing API security.

Weekly AppSec Digest

Get new resources delivered every Monday.