docs: seventy-first public scan (theroyallab/tabbyAPI) - #101
Merged
Conversation
…te + image_url SSRF Two real findings filed as theroyallab/tabbyAPI#448: - wildcard CORS composes with the documented 'localhost-only means disable_auth is fine' guidance to hand any visited web page the admin API on a loopback-bound instance - multimodal image_url fetch has no scheme/host policy and is on by default Both verified with runnable differentials against the resolved dependency versions; the differentials corrected the mechanism (Starlette reflects the origin) and the remedy (allow_credentials=False is not a fix), and removed two overclaims from the SSRF item. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
elfrost
added a commit
that referenced
this pull request
Sep 11, 2026
docs: scan #101 — mljar/mercury (1 real, reported privately via PVR)
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.
Adds the tabbyAPI scan write-up, prepends the index entry, and refreshes the scan counters (69/67 -> 71).
Two real findings, both filed upstream as theroyallab/tabbyAPI#448:
allow_origins=["*"]inendpoints/server.pycomposes with thedisable_authguidance ("turn this on if you are ONLY connecting from localhost") and thecommon/auth.pydocstring ("since TabbyAPI is a local application, it should be fine") to give any web page in the user's browser the admin API.disable_fetch_requestsdefaults to false.Both were verified with runnable differentials rather than asserted from reading. The differentials mattered: Starlette reflects the attacker origin rather than sending
*, and flippingallow_credentialsalone does not close the hole - only the origin allowlist does. The SSRF differential removed two claims (file://read, absent timeout).🤖 Generated with Claude Code