Blind Oracle Extracting Restricted Data Through a Search API - #2775
Open
carlospolop wants to merge 1 commit into
Open
Blind Oracle Extracting Restricted Data Through a Search API#2775carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://kymu.dev/article/BlindOracle Content Categories: Based on the analysis, this content was categorized under "Pentesting Web / IDOR or a new subsection named "Search-Index Authorization Bypass and Blind Search Oracles"". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview
The post, published in August 2026, describes the discovery and exploitation of a blind search oracle in a cloud-based design-collaboration platform with granular role-based access controls. The researcher configured two accounts: an administrator and a deliberately restricted user. The administrator removed the second account's access to the Notes tab and disabled visibility of metadata such as creator email addresses. Although the restricted user could no...
🔧 Technical Details
Search-index authorization bypass: When an application hides sensitive fields in its UI or API responses but leaves them in a full-text index, unauthorized users may still infer their contents. Restrict the search to an accessible object using workspace and object identifiers, then submit candidate terms. If the object appears only when the candidate is present, the search subsystem is evaluating fields that the caller cannot directly read. Authorization must be applied before query evaluation rather than only when results are serialized.
Response-based blind substring oracle: A reliable difference between matching and nonmatching searches can leak one bit per request. The demonstrated endpoint returned HTTP
200with the scoped item for a matching substring and HTTP204for a nonmatch. Equivalent signals can be exposed through result counts, body lengths, errors, status codes, or timing differences. Validate the ...🤖 Agent Actions
Plan:
Repository mapping is complete. I’m now comparing the IDOR, API-testing, XS-Leak, SQL-oracle, Elasticsearch, and general web-methodology pages to avoid duplicating an existing oracle pattern and to keep the addition in one file.
The best fit is the existing
src/pentesting-web/idor.md: the defect is an authorization failure on a known object, while the search response supplies the oracle. The XS-Search page is cross-origin/browser-side, and the Elasticsearch page is service enumeration, so placing the technique there would be misleading. I’m doing a final duplication/status check before editing only the IDOR page.Editing has started. I’ll add one compact subsection under the existing oracle material, including object scoping, signal calibration, bidirectional extraction with ambiguity handling, and permission-aware indexing/detection; the original blog will be appended as reference [8].
The documentation change is in place. I’m verifying the exact diff, citation numbering, code-block length, forbidden-source absence, and Markdown whitespace; I’ll correct anything found before finishing.
The review found only a minor emphasis-formatting issue, now corrected. I’m running the final repository checks and attempting the project’s documented mdBook validation if the binary is available.
Updated
src/pentesting-web/idor.mdwith:Validation passed with
git diff --checkand content assertions.mdbookwas unavailable, so the full build was skipped.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.