🤔 Description
To ensure a higher level of credential security that may be required in specific industries, ACLI 11.0 introduces the Secure Properties functionality.
Secure Properties augments the acli.properties
file, mitigating any breach of security that could occur if the ACLI configuration files were to escape your system.
🌱 Solution
The Secure Properties in ACLI 11.0 provides a key-store-based credential storage solution using password based encryption (PBE). The specific key store format utilized is the UBER format, provided by the excellent Bouncy Castle cryptography library for Java.
The Secure Properties key can store any value, while it prevents sensitive credentials from being stored as plain text on disk.
The use of secure properties is optional.
The ACLI Shell can also create Secure Properties entries as part of its guided site configuration functionality, which can be launched using the slash-command, /sites add
.
Creating a key store
A new key store is created when the action setSecureProperty
is run for the first time. For example:
$ acli system setSecureProperty --name my.secret --secret - Enter secure value: <secret value prompt> Secure properties file does not yet exist. Creating... Enter new secure properties password: <new password prompt> Confirm secure properties password: <new password prompt> Remember your password, it cannot be recovered! Secure properties file created. Value for key 'foo' set in secure properties file.
The value for the --secret
parameter in this example is provided as -
which indicates that the value should be obtain via an interactive prompt (or read from stdin
if not connected to a tty). We strongly recommend providing sensitive values this way so that they are not accidentally recorded in your shell history, where they would end up existing in plain text anyway!
Breaking this down, you can see that first ACLI will prompt for the value of the secret to be stored, and then it will prompt for the new key store file password (with confirmation).
The key store requires a non-blank password. Once created, do not forget the password!
Key store passwords cannot be recovered by ACLI support.
If your password is ever compromised, you should consider the contents of the key store to also be compromised and rotate any secrets it contains accordingly.
Once created, the key store file (named .acli.keystore
) can be found in your home directory. Each ACLI user on a given system has their own such file (because of other ACLI limitations, it is still necessary on a multi-user system for each user to maintain their own ACLI installation). The key store file path can be overridden to point to an alternative location through the use of the environment variable ACLI_SECURE_PROPERTIES
. This can be useful if you need to work with multiple key stores or multiple installations of ACLI, but typically should not be needed.
Referencing secrets in acli.properties
When in use, the key store file can be used to provide values to acli.properties
by way of substitution variables similar to the current method of referring to environment variables or other properties (i.e., using ${my.variable}
syntax). In ACLI 11.0.0, the default syntax for referring to key store values is with a variation of that syntax of the form ${secret:my.secret}
(note the addition of the secret:
prefix).
Because the key store is password-protected, we require the secret:
prefix in order to consult the key store only when necessary. This requirement can be disabled by setting the environment variable ACLI_SECURE_PROPERTIES_SAFE_MODE=false
. When disabled, the key store will be consulted for any variable names not found in acli.properties
itself or the environment, but this may result in an interactive prompt to supply a password!
Unlocking the key store
Once your ACLI configuration refers to secure property values (i.e., using ${secret:...}
style variables in acli.properties
) then you will be prompted to unlock the key store each time you run an ACLI command (including starting the ACLI Shell).
Normally, this means that ACLI will prompt you interactively for your key store password before it continues (or read it from stdin
when not connected to a tty). At your discretion, you may optionally short-circuit this prompting behavior by setting the environment variable ACLI_SECURE_PROPERTIES_PASSWORD
with your password as a value.
Setting your key store password as an environment variable may or may not be appropriate, depending on your risk tolerance. Doing so is a convenience, but one that comes at a cost of reduced security. You still have the advantage that if your key store file escapes your system it is strongly encrypted, but the storage of your key store password as an environment variable may make it easier to compromise your key store in a sophisticated attack.
Whether you decide this is an acceptable risk is entirely at your discretion, and depends on the threat modeling under consideration by you and your organization. Use this method at your own risk.
Actions
Use ACLI actions, part of the ACLI system
client, to create, update, read, and delete key-value pairs stored in the Secure Properties key store.
To use a secure property in acli.properties
, follow the example as illustrated here:
my-jira = jiracloud -s https://myjira.atlassian.net -u me@example.com -t ${secret:my-jira.token}
The following table shows how you can work with the secure properties and provides examples.
Actions and Examples | |
---|---|
|
|
|
|
|
|
| Locating your Secure Properties key store Your key store is normally located in your home directory and is named Example: Display key store file path $ acli -a getClientInfo --outputFormat 2 Client information Client name . . . . . . . . . : cli Client version . . . . . . . : 11.0.0 ... Secure properties . . . . . . : File . . . . . . . . . . . : /Users/me/.acli.keystore |