Describe the bug
Following up on a comment from #503 (comment) by @Harsh4902, the CLI currently stores credentials in the local configuration file in plain text.
Specifically, looking at pkg/config/localconfig.go, the LocalConfig struct stores AuthToken and RefreshToken inside the User struct, and ClientSecret inside the Auth struct. These are serialized directly to a YAML file (typically ~/.config/microcks/config).
If the file permissions on the config file are not strictly locked down, or if a malicious script gets read access to the user's home directory, these credentials can be easily stolen.
Expected behavior
CLI tools typically avoid storing access tokens, refresh tokens, and client secrets in plain text. Instead, we should consider:
- Using the operating system's native secure keystore/keychain (e.g., macOS Keychain, Windows Credential Manager, Linux Secret Service) using a library like zalando/go-keyring or 99designs/keyring.
- As a fallback, strictly enforcing
0600 permissions on the config file so that only the file owner can read it (though native keystore is much preferred).
Actual behavior
No response
How to Reproduce?
No response
Microcks version or git rev
No response
Install method (docker-compose, helm chart, operator, docker-desktop extension,...)
No response
Additional information
Proposed Solution
- Integrate a keychain library like
github.com/zalando/go-keyring.
- When saving a configuration (in
pkg/config/localconfig.go), extract AuthToken, RefreshToken, and ClientSecret from the struct.
- Save these extracted secrets securely into the OS keychain, using the server name or user context as the service key.
- Replace the struct values with a placeholder (e.g.,
keychain-stored) before writing the remaining configuration to the YAML file.
- When reading the configuration, dynamically fetch the secrets from the keychain back into the struct.
Impact
Storing credentials securely will prevent local token theft and align microcks-cli with industry best practices for CLI security.
Describe the bug
Following up on a comment from #503 (comment) by @Harsh4902, the CLI currently stores credentials in the local configuration file in plain text.
Specifically, looking at
pkg/config/localconfig.go, theLocalConfigstruct storesAuthTokenandRefreshTokeninside theUserstruct, andClientSecretinside theAuthstruct. These are serialized directly to a YAML file (typically~/.config/microcks/config).If the file permissions on the config file are not strictly locked down, or if a malicious script gets read access to the user's home directory, these credentials can be easily stolen.
Expected behavior
CLI tools typically avoid storing access tokens, refresh tokens, and client secrets in plain text. Instead, we should consider:
0600permissions on the config file so that only the file owner can read it (though native keystore is much preferred).Actual behavior
No response
How to Reproduce?
No response
Microcks version or git rev
No response
Install method (
docker-compose,helm chart,operator,docker-desktop extension,...)No response
Additional information
Proposed Solution
github.com/zalando/go-keyring.pkg/config/localconfig.go), extractAuthToken,RefreshToken, andClientSecretfrom the struct.keychain-stored) before writing the remaining configuration to the YAML file.Impact
Storing credentials securely will prevent local token theft and align
microcks-cliwith industry best practices for CLI security.