feat: unlock agent for password-free vault access#6
Merged
danpasecinic merged 6 commits intomainfrom Jan 25, 2026
Merged
Conversation
Add Unix domain socket-based agent service that holds the derived encryption key in memory. This enables password-free access to the vault after initial unlock, similar to ssh-agent. - AgentServer: Listens on XDG_RUNTIME_DIR/zault/agent.sock - AgentClient: Connects to running agent to retrieve key - Protocol: GET_KEY, LOCK, STATUS commands - Key is securely zeroed on agent shutdown
- unlock: Prompts for password, starts agent in background (or foreground with -f) - lock: Stops agent and securely clears key from memory - vault_helpers: Check agent first, skip password prompt if running - Updated help text with new commands
- Peer credential verification returns false on unsupported platforms - Added symlink and ownership check for socket directory path - Verify socket ownership after bind to prevent race conditions - Securely zero key buffer in client getKey() method - Extract duplicated decryption logic into helper methods - Add error logging for unexpected agent key failures
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.
Summary
unlockcommand to start agent with derived key in memorylockcommand to stop agent and securely clear keySecurity
Usage
Test plan
zault unlockand verify agent startszault listwithout password promptzault lockand verify agent stops--foregroundmode with Ctrl+C