Improper Authorization (close cousin of IDOR)
Summary
Reports here are functionally similar to IDOR but the access-control layer is at a 'role/permission' level rather than 'object-id' level: low-privilege staff can call admin GraphQL operations, OAuth misconfig allows account takeover, 2FA bypass via alternate route, transactions can be initiated using only a victim's public Steam ID. Detection logic is essentially the same as IDOR + Improper Access Control modules.
Top Affected Components / Targets
Multi-tenant SaaS GraphQL APIsOAuth/SSO callback flowsMobile-API mirrors of web auth flowPublic-ID-driven payment / subscription endpoints
Common Attack Vectors
As a low-permission user, attempt admin-shaped GraphQL operationsReplay 2FA-protected request via API endpoint that bypasses 2FASubmit /create-payment with only victim's public IDOAuth misconfig: change redirect_uri to attacker domain
Common Payloads
GraphQL: { staffOrderNotificationSubscriptionCreate(...) }GraphQL: { enforceSamlOrganizationDomains(...) }POST /create-payment {"steamid":"..."}POST /api/v1/2fa-bypass-route
Detection Strategy
Multi-account replay testing (authenticating as two accounts and swapping their object references) and GraphQL-specific probing for unauthenticated mutations both apply here, along with a targeted check for 2FA enforcement gaps: when a web flow requires two-factor authentication, replaying the same critical action against a corresponding mobile or API endpoint checks whether that second factor is enforced consistently or only on the primary path.
Tip: Testing tools that run these checks in parallel across every discovered endpoint can cut the time required substantially compared to fully manual testing, as long as they confirm findings with more than one signal to keep the false-positive rate down.
False-Positive Notes
Multi-account testing required for high-confidence findings.
How to Test
Manual Testing Methodology
Here is a systematic approach to identifying Improper Authorization (close cousin of IDOR) vulnerabilities in a target application.
Before testing, map all input vectors that could be affected. Identify parameters, headers, cookies, and request bodies that interact with the vulnerable component. A proxy such as Burp Suite or OWASP ZAP, paired with normal browsing of the target, is usually enough to build this list.
Send a legitimate request and record the normal response: status code, content length, response time, and any identifying tokens. This baseline matters because it's what you'll compare later responses against once payloads are involved.
Inject test payloads into each identified input vector one at a time. Start with benign detection payloads before escalating to anything that could actually trigger the vulnerability. For Improper Authorization (close cousin of IDOR) specifically, authenticate as a low-privilege test account, then substitute identifiers belonging to another account (sequential IDs, UUIDs harvested from other responses) into every request, and separately try reaching privileged endpoints/actions directly by URL or method regardless of what the UI exposes to that role.
Compare the response against your baseline, looking specifically for a 200 response containing another user's data, or a privileged action completing successfully, when the authenticated user should have received a 401/403 — compare against the expected-denial baseline for that same request from the same account.
Once a potential vulnerability is detected, confirm it with at least a few independent test cases to rule out coincidence. Document the exact request and response as proof. For Improper Authorization (close cousin of IDOR), a confirmed finding typically means showing that attacker-controlled input changes the application's behavior in a way that matters for security, not just that a payload was reflected somewhere harmless.
Real-World Impact
Real-World Impact
Broken access control and IDOR let attackers access or modify resources belonging to other users simply by changing an identifier, or by reaching an endpoint that should have required a higher privilege level. It's one of the most commonly reported vulnerability classes precisely because the underlying mistake is conceptually simple, yet easy to overlook in authorization logic that only checks whether a user is logged in, not whether they're entitled to the specific resource or action being requested.
Real-world exploitation ranges from reading other users' private messages, files, or financial records, to modifying account settings, to reaching admin-only functionality by requesting it directly regardless of what the UI shows. In multi-tenant applications, it can mean cross-tenant data access entirely. The severity scales directly with how sensitive the exposed resource or action is.
This bug class shows up in virtually every kind of application, from social platforms to banking APIs to healthcare systems, which makes it one of the more consistently valuable checks to run regardless of what the target actually does — and one of the hardest for an automated scanner to catch reliably, since confirming it requires understanding what a specific user should and shouldn't be able to reach.
Prevention & Remediation
Prevention and Secure Coding
Preventing Improper Authorization (close cousin of IDOR) takes a defense-in-depth approach — no single control below is sufficient alone, but together they close off both the primary path and the most common bypasses.
Object-level authorization on every request. Verify the authenticated user actually owns or is entitled to the specific resource identified in the request — on every endpoint that accepts an identifier, not just the ones that seemed sensitive during development.
Centralize the authorization logic. Implement authorization checks in one shared layer or middleware instead of re-implementing them per endpoint; re-implementation is exactly where individual endpoints get missed.
Default-deny. Require an explicit permission grant for each action a role can take, rather than granting broad access and trying to enumerate exceptions.
Indirect references where feasible. Opaque, per-user tokens in place of sequential database IDs make horizontal enumeration harder, though this is a hardening measure, not a substitute for the authorization check itself.
Test authorization from the attacker's seat, not the developer's. Authenticate as a low-privilege user and attempt every action a higher-privilege or different-tenant user could take — the UI hiding a button is not an authorization control.
Source reports
A sample of the disclosed HackerOne reports this playbook was synthesized from.