{"id":50779342,"url":"https://github.com/keyorixhq/keyorix","last_synced_at":"2026-06-15T22:00:51.773Z","repository":{"id":350753570,"uuid":"1020367321","full_name":"keyorixhq/keyorix","owner":"keyorixhq","description":"Lightweight on-premise secrets management for European enterprises. AGPL. No SaaS dependency. Air-gap compatible. NIS2/DORA aligned. AI-native via MCP server — roadmap","archived":false,"fork":false,"pushed_at":"2026-06-12T02:06:09.000Z","size":65971,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-12T02:16:30.396Z","etag":null,"topics":["air-gap","devops","devsecops","european","gdpr","golang","on-premise","secrets-management","security","vault-alternative"],"latest_commit_sha":null,"homepage":"http://keyorix.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/keyorixhq.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":"COPYRIGHT","agents":null,"dco":null,"cla":null}},"created_at":"2025-07-15T18:55:11.000Z","updated_at":"2026-06-12T02:05:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/keyorixhq/keyorix","commit_stats":null,"previous_names":["keyorixhq/keyorix"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/keyorixhq/keyorix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyorixhq%2Fkeyorix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyorixhq%2Fkeyorix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyorixhq%2Fkeyorix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyorixhq%2Fkeyorix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keyorixhq","download_url":"https://codeload.github.com/keyorixhq/keyorix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keyorixhq%2Fkeyorix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34381762,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["air-gap","devops","devsecops","european","gdpr","golang","on-premise","secrets-management","security","vault-alternative"],"created_at":"2026-06-12T02:01:24.276Z","updated_at":"2026-06-15T22:00:51.765Z","avatar_url":"https://github.com/keyorixhq.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Keyorix\n\n**Lightweight secrets management for teams that can't use SaaS.**\n\nOn-premise. Air-gapped ready. Single binary. No Vault admin required.\n\n---\n\n## Why Keyorix?\n\n| | Vault | Doppler | Keyorix |\n|---|---|---|---|\n| On-premise | Yes | No | **Yes** |\n| Air-gapped | Yes | No | **Yes** |\n| Simple ops | No | Yes | **Yes** |\n| EU company | No | No | **Yes** |\n| Open source | BSL | No | **AGPL** |\n| Single binary | Yes | N/A | **Yes** |\n\nVault is powerful but requires a dedicated admin. Doppler is simple but SaaS-only. Keyorix is both simple and runs entirely in your infrastructure.\n\n---\n\n## Install\n\n```bash\ncurl -L https://raw.githubusercontent.com/keyorixhq/keyorix/main/install.sh | sh\n```\n\nOr build from source:\n\n```bash\ngit clone https://github.com/keyorixhq/keyorix\ncd keyorix \u0026\u0026 make install\n```\n\n---\n\n## Quick Start\n\n**Self-host the full stack (web UI + API + PostgreSQL) with Docker Compose:**\n\n```bash\ncp .env.example .env   # set KEYORIX_DB_PASSWORD, KEYORIX_MASTER_PASSWORD, admin creds\ndocker compose up -d   # open http://localhost:8088\n```\n\nSee [docs/SELF_HOSTING.md](docs/SELF_HOSTING.md) for production setup (TLS,\nbackups, upgrades, and the all-important encryption-key handling), and\n[docs/CONFIGURATION.md](docs/CONFIGURATION.md) for the full `keyorix.yaml`\nreference (encryption/KEK providers, MFA, WebAuthn, dynamic secrets, OIDC, …).\n\n**Or start just the server binary:**\n\n```bash\nKEYORIX_MASTER_PASSWORD=yourpassword keyorix-server\n```\n\n**Connect the CLI:**\n\n```bash\nkeyorix connect http://localhost:8080 --username admin --password yourpassword\n```\n\n**Create and use secrets:**\n\n```bash\nkeyorix secret create --name db-password --value supersecret\nkeyorix run --env production -- node app.js\nkeyorix run --env production -- flask run\nkeyorix run --env production -- ./myapp\n```\n\nSecrets are injected as environment variables. `db-password` becomes `DB_PASSWORD`.\n\n---\n\n## Migrate from Vault\n\n```bash\n# From Vault (Medusa YAML export)\nkeyorix secret import --file vault-export.yaml --format vault --env 1\n\n# From .env files\nkeyorix secret import --file .env --format dotenv --env 1\n\n# Preview before importing\nkeyorix secret import --file vault-export.yaml --format vault --env 1 --dry-run\n```\n\n---\n\n## SDKs\n\nFetch secrets directly from your application at startup. Zero hardcoded credentials.\n\n**Go**\n```bash\ngo get github.com/keyorixhq/keyorix-go\n```\n```go\ntoken, _ := keyorix.Login(ctx, \"http://your-server:8080\", \"admin\", \"password\")\nclient := keyorix.New(\"http://your-server:8080\", token)\ndbPassword, _ := client.GetSecret(ctx, \"db-password\", \"production\")\n```\n\n**Python**\n```bash\npip install keyorix\n```\n```python\ntoken = keyorix.login(\"http://your-server:8080\", \"admin\", \"password\")\nclient = keyorix.Client(\"http://your-server:8080\", token)\ndb_password = client.get_secret(\"db-password\", \"production\")\n```\n\n**Node.js**\n```bash\nnpm install keyorix\n```\n```javascript\nconst token = await keyorix.login(\"http://your-server:8080\", \"admin\", \"password\");\nconst client = new keyorix.Client(\"http://your-server:8080\", token);\nconst dbPassword = await client.getSecret(\"db-password\", \"production\");\n```\n\nSee [example apps](https://github.com/keyorixhq/keyorix-go/tree/main/examples/petstore) for full working demos with Docker Compose.\n\n---\n\n## Core Features\n\n**Secrets management**\n- Create, read, update, delete secrets with full versioning\n- Environment separation: development, staging, production\n- Secret sharing between users and groups\n\n**Access control**\n- Role-based access control (RBAC)\n- Group-based permissions\n- Service tokens for CI/CD and automation\n\n**Audit and compliance**\n- Every access logged: who, what, when, from where\n- Two audit layers: `audit_events` and `secret_access_logs`\n- NIS2 / DORA alignment for European compliance requirements\n- Dashboard expiry alerts for secrets approaching rotation deadlines\n\n**Developer experience**\n- `keyorix run` — inject secrets into any process\n- `keyorix secret import` — migrate from Vault, .env files, JSON\n- `keyorix connect` — single command server authentication\n- Web dashboard for teams who prefer a UI\n\n---\n\n## Architecture\n\nSingle binary. HTTP REST API on port 8080. Web UI on port 3000.\n\nSQLite for development and small teams. PostgreSQL for production.\n\nAir-gapped deployment: copy the binary and run. No internet required.\n\n---\n\n## Security\n\n- AES-256-GCM encryption for all secret values\n- Envelope encryption: passphrase → PBKDF2 → KEK (memory only) → wrapped DEK\n- Constant-time token comparison (timing attack prevention)\n- Secrets never logged or exposed in error messages\n\nSecurity issues: security@keyorix.com\n\n---\n\n## Roadmap\n\n- Kubernetes service account authentication\n- Dynamic secrets — credentials generated on-demand with TTL\n- MCP server — AI assistant integration\n- Java SDK\n- Access anomaly detection (NIS2 incident detection)\n\n---\n\n## License\n\nAGPL-3.0. Commercial licensing available for enterprise deployments.\n\nContact: hello@keyorix.com\n\n---\n\n## About\n\nBuilt by Andrei Beshkov, ex-Microsoft Security PM, Valencia, Spain.\n\nKeyorix SL — your data stays in your infrastructure.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeyorixhq%2Fkeyorix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeyorixhq%2Fkeyorix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeyorixhq%2Fkeyorix/lists"}