security: sign registry registration (proof-of-possession) — PPA-003#38
Closed
TeoSlayer wants to merge 1 commit into
Closed
security: sign registry registration (proof-of-possession) — PPA-003#38TeoSlayer wants to merge 1 commit into
TeoSlayer wants to merge 1 commit into
Conversation
RegisterWithKeyOpts (the single builder emitting a public_key; RegisterWithKey funnels through it) now attaches a signature over "register:<listenAddr>:<publicKeyB64>", proving the submitter holds the private key for the registered public_key — matching the existing signed heartbeat/deregister/resolve operations. The challenge binds the public_key (defeats key-directory poisoning) and the listen_addr (hardens the re-registration endpoint-repoint vector), and is verifiable by the server before node_id assignment (node_id is not an input). Additive and backward-compatible: only an optional signature field is added, best-effort when a signer is configured; keyless/anonymous registration is unchanged. Server-side enforcement and registry-TLS-by-default are separate coordinated changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
Author
|
Superseded — registration proof-of-possession signing is already on main and shipped in v0.5.8/v0.5.9. |
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.
PPA-003: the register op establishes the node_id↔pubkey↔endpoint binding but was the only signed-op sibling carrying no signature. The client now signs
register:<listen_addr>:<public_key>and includes it assignature.Additive + wire-compatible: old registries ignoring the field still accept the registration; a signature-verifying registry (rendezvous PPA-003) gets proof-of-possession.
go test ./registry/...green.🤖 Generated with Claude Code