Skip to main content

🔐 sinduk - Secrets Management CLI & Team Vaults


Build Status PyPI version PyPI Downloads Python Versions License security:bandit

sinduk (সিন্দুক — the traditional Bengali word for a secure treasure chest or heirloom vault) is a secure, local-first secrets manager and team vault system designed for developers and DevOps teams. Store, retrieve, sync, and share passwords, API tokens, and SSH credentials with strong cryptography, master password verification, role-based permissions, and zero-knowledge synchronization.


🌟 Key Features

  • 🔒 Local-First & Zero-Knowledge: Secrets are encrypted at rest with PBKDF2-HMAC-SHA256 and Fernet (AES-128-CBC + HMAC). Plaintext never touches the network unencrypted.
  • 👥 Team Vaults & RBAC: Create isolated team vaults (dev-infra, prod-keys) with granular roles (viewer, editor, admin) and encrypted key-wrapping per member.
  • 🔄 Multi-Target Vault Sync: Push and pull encrypted vault bundles across team members using a shared directory (Dropbox, Google Drive, NAS, Git) or via the built-in self-hosted server.
  • 🖥️ Self-Hosted Zero-Knowledge Relay Server: Run your own team sync server (sinduk server start) with token authentication and audit logging. The server never has access to encryption keys or secrets.
  • 📦 Encrypted Backups: Export and import full encrypted vault backups with master password protection.
  • 💻 Modern Web UI: Interactive browser dashboard (sinduk web) featuring a Vault Switcher, Secrets CRUD, Team Member Management, Audit Log Viewer, and an in-browser SSH Terminal.
  • 🔑 SSH Key Management: Store and auto-connect to SSH servers using credentials or key files.
  • 📋 Clipboard & Pipeline Integration: Copy secrets directly to clipboard (--clip) or pipe command outputs (sinduk cc).
  • 🔗 LinklyHQ URL Shortening: Built-in shortlink generator with click tracking.

🚀 Installation

pip install pipx
pipx ensurepath
pipx install sinduk

Standard pip

pip install sinduk

Install from source

git clone https://github.com/imshakil/sinduk.git
cd sinduk
pip install -e .

Verify installation:

sinduk version
sinduk --help

📖 Command Reference

Command / Group Description
init Set or reset your master password
add Add a secret (--pass, --token, --ssh) with optional --vault
get / get-by-id Retrieve secrets by label or ID (--clip to copy)
list List all saved secrets (supports --vault)
update / update-by-id Update an existing secret value
delete / delete-by-id Delete a secret
team 👥 Team vault management (create vaults, add members, audit log)
sync 🔄 Sync encrypted vaults with a team relay server or shared directory
server 🖥️ Start, stop, and manage the self-hosted zero-knowledge sync server
backup 📦 Encrypted backup export and import across machines
web 🌐 Launch or manage the local Web UI dashboard
ssh Connect to an SSH server using saved credentials
export Export secrets to unencrypted JSON or CSV
short Shorten URLs via LinklyHQ
cc Copy stdin / pipeline output to clipboard
change-master-key Re-encrypt all secrets with a new master password
version Show sinduk version and project details

👥 Team Vaults & Collaboration

1. Initialize Your Team Identity

Each team member initializes their identity once:

sinduk team init
# Enter display name: Alice
# ✅ Identity set! User ID: d164fe8724cb

To see your identity anytime:

sinduk team whoami

2. Create a Team Vault

sinduk team create-vault dev-infra -d "Backend infrastructure & database credentials"

3. Add Teammates to the Vault

Add members using their unique User ID:

# Add Bob as an editor
sinduk team add-member dev-infra a8f910e1234 --name "Bob" --role editor

# Add Charlie as a read-only viewer
sinduk team add-member dev-infra b7c821f9876 --name "Charlie" --role viewer

Available roles:

  • viewer: Read secrets in the vault
  • editor: Read, add, update, and delete secrets
  • admin: Full control (manage members, roles, audit log, delete vault)

4. Working with Secrets in Team Vaults

Simply pass --vault <name> or -v <name> to any secret command:

# Add a secret to the team vault
sinduk add --vault dev-infra --password postgres_db postgres db_pass_secret
sinduk add --vault dev-infra --token stripe_key sk_test_12345

# List secrets in the team vault
sinduk list --vault dev-infra

# Retrieve a secret from the vault
sinduk get --vault dev-infra postgres_db --clip

# View immutable audit log of actions taken in the vault
sinduk team audit-log dev-infra

🔄 Syncing Vaults Across the Team

Option A: Self-Hosted Zero-Knowledge Relay Server

1. Start the Sync Server (DevOps / Admin)

Run on any Linux server, VPS, or cloud container:

# Start the server daemon on port 58380
sinduk server start --host 0.0.0.0 --port 58380 --daemon

# Generate a team token
sinduk server token create --name "DevTeam" --role admin

2. Configure Team Members

Each team member configures their client once:

sinduk sync config set --server http://secrets.mycompany.internal:58380 --token sinduk_tok_...

3. Push and Pull Updates

# Push local vault updates to the server
sinduk sync push dev-infra

# Check status of remote vault
sinduk sync status dev-infra

# Pull and merge latest changes from the server
sinduk sync pull dev-infra

Option B: Offline / Shared Directory Sync (No Server)

Sync encrypted bundles through Dropbox, Google Drive, NAS, or Git:

# Push encrypted bundle to shared directory
sinduk sync push dev-infra --to ~/Dropbox/TeamSecrets/

# Pull and merge from shared directory (supports both .sinduk and .pacli files)
sinduk sync pull dev-infra --from ~/Dropbox/TeamSecrets/

📦 Encrypted Backups

Export and import encrypted backup archives of personal or team vaults:

# Backup personal store
sinduk backup export --output ~/sinduk_backup.sinduk

# Backup a specific team vault
sinduk backup export --vault dev-infra --output ~/dev_infra_backup.sinduk

# Restore backup
sinduk backup import --input ~/dev_infra_backup.sinduk --vault dev-infra

🌐 Web UI

Launch the modern browser-based UI:

# Start and open in default browser
sinduk web

# Start in background mode (daemon)
sinduk web start

# Check status / Stop
sinduk web status
sinduk web stop

💡 Pro Tips

Session-based Master Password

Avoid typing your master password repeatedly by exporting it in your current terminal session:

export SINDUK_MASTER_PASSWORD="your-master-password"

Pipeline & Clipboard Tools

# Copy SSH public key to clipboard
cat ~/.ssh/id_rsa.pub | sinduk cc

# Copy command output
terraform output -json | sinduk cc

📄 License

Distributed under the MIT License. Built with ❤️ by imShakil.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sinduk-2.0.0.tar.gz (223.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sinduk-2.0.0-py3-none-any.whl (110.8 kB view details)

Uploaded Python 3

File details

Details for the file sinduk-2.0.0.tar.gz.

File metadata

  • Download URL: sinduk-2.0.0.tar.gz
  • Upload date:
  • Size: 223.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sinduk-2.0.0.tar.gz
Algorithm Hash digest
SHA256 d058f4af563883ffaf00b9c47c7c40da7e7cda8417a321dbb2f946c4863ea2c3
MD5 45b7d82e60c8746b567ebbe7266f504c
BLAKE2b-256 316729eb1a5b6f5744489856ec04ad9df93d74b8b9221c8ee81a11a7e213d740

See more details on using hashes here.

Provenance

The following attestation bundles were made for sinduk-2.0.0.tar.gz:

Publisher: pypi-publish.yml on imShakil/sinduk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sinduk-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: sinduk-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 110.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sinduk-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 944bd4a9b0c27d0f0c439605ed0841a91cc36132d4f24ba7218e06bffba06e1d
MD5 2cea46d158b855600eddd2b65d8143f9
BLAKE2b-256 8610d556c5077058858180bf18b6f5aa8a9f7809fa63ee634d1dc592820b3845

See more details on using hashes here.

Provenance

The following attestation bundles were made for sinduk-2.0.0-py3-none-any.whl:

Publisher: pypi-publish.yml on imShakil/sinduk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.1.0

2 files

This release

2.0.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page