security: authenticate RPC socket and validate route registration#8
Closed
security: authenticate RPC socket and validate route registration#8
Conversation
- Generate a shared secret at startup, write to /tmp/backoffice-rpc.secret - Require secret in every RPC call (timing-safe comparison) - Validate route targets are localhost only (http://localhost:<port>) - Restrict route patterns to allowlist (/share) - Share skill reads secret from file before RPC calls Prevents background processes from hijacking routes or proxying to internal/cloud metadata endpoints.
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.
Problem
Any process running as
appuser(including anything spawned viashell) can connect to the internal Unix socket at/tmp/backoffice.sockand register arbitrary HTTP routes. This means a compromised or malicious background process could:/mcpand intercept all MCP traffic (including OAuth tokens)http://169.254.169.254to access cloud metadataChanges
src/rpc.tsrandomBytes(32)shared secret at startup, written to/tmp/backoffice-rpc.secret(mode 0600)params.secret— rejected via timing-safe comparison if missing/wrong/^http:\/\/(?:localhost|127\.0\.0\.1):\d+$//share)skills/share/index.ts/tmp/backoffice-rpc.secretbefore RPC callsroute.registerandroute.unregisterparamsTypechecks clean.