-
Notifications
You must be signed in to change notification settings - Fork 1
docs: session sharing — SECURITY.md, BETA.md, checklist (G1f) #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -360,5 +360,6 @@ func (a *app) cmdJoin(args []string) error { | |
| return err | ||
| } | ||
| fmt.Fprintf(a.out, "✓ joined %q as a guest — %s access until %s\n", info.Name, modeWord(sg.Mode), time.Unix(sg.NA, 0).Format("15:04")) | ||
| fmt.Fprintf(a.out, " open it: %s attach %s (or the web app)\n", a.binary, info.Name) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When an inviter supplies a valid machine name containing shell syntax, such as Useful? React with 👍 / 👎. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
After a guest claims the one-time invite with Useful? React with 👍 / 👎. |
||
| return nil | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
During a guest attach,
relayLocator.Dialsends the guest's unencryptedBindingJSONthroughSignalMsg.Binding; that record contains the stable guest wallet, device ID, and X25519 key. Although the relay does not currently interpret it, it can parse the record and correlate the guest with the owner's shared machine, so this is new observable metadata rather than traffic identical to an owner attach. Document that exposure or encrypt the binding before claiming the relay learns nothing new.AGENTS.md reference: AGENTS.md:L9-L9
Useful? React with 👍 / 👎.