Questions? Pop in our slack channel!
Vault is an awesome project and it comes with superb documentation, a rock-solid server component and a flexible and capable command-line interface.
So, why safe? To solve the following problems:
- Securely generate new SSH public / private keys
- Securely generate random RSA key pairs
- Auto-generate secure, random passwords
- Securely provide credentials, without files
- Dumping multiple paths
Primarily, these are things encountered in trying to build secure BOSH deployments using Vault and Spruce.
If you run Homebrew on MacOS, be aware that the the Formula for safe in homebrew core is outdated, incorrect, and unmaintained. We maintain our own tap, which you are encouraged to use instead:
brew tap cloudfoundry-community/cf
brew install cloudfoundry-community/cf/safe
To make it easier to target multiple Vaults from one client (i.e.
your work laptop), safe lets you track and authenticate against
targets, each representing a different vault.
To get started, you'll need to add a new target:
safe target https://vault.example.com myvault
The first argument is the URL to the Vault; the second is a shorthand alias for the target. Later, you can retarget this Vault with just:
safe target myvault
You can see what Vaults you have targeted by running
safe targets
All commands will be run against the currently targeted Vault.
To authenticate:
safe auth [token]
safe auth ldap
safe auth github
safe auth okta
(Other authentication backends are not yet supported)
For each type (token, ldap, okta or github), you will be prompted for the necessary credentials to authenticated against the Vault.
safe operates by way of sub-commands. To generate a new
2048-bit SSH keypair, and store it in secret/ssh:
safe ssh 2048 secret/ssh
To set non-sensitive keys, you can just specify them inline:
safe set secret/ssh username=system
If you use a password manager (good for you!) and don't want to
have to paste passwords twice, use the paste subcommand:
safe paste secret/1pass/managed
Commands can be chained by separating them with the argument
terminator, --, so to both create a new SSH keypair and set the
username:
safe ssh 2048 secret/ssh -- set secret/ssh username=system
Auto-generated passwords are easy too:
safe gen secret/account passphrase
Sometimes, you just want to import passwords from another source
(like your own password manager), without the hassle of writing
files to disk or the risk of leaking credentials via the process
table or your shell history file. For that, safe provides a
double-confirmation interactive mode:
safe set secret/ssl/ca passphrase
passphrase [hidden]:
passphrase [confirm]:
What you type will not be echoed back to the screen, and the confirmation prompt is there to make sure your fingers didn't betray you.
All operations (except for delete) are additive, so the
following:
safe set secret/x a=b c=d
is equivalent to this:
safe set secret/x a=b -- set secret/x c=d
Need to take an existing password, and generate a crypt-sha512 hash,
or base64 encode it? safe fmt will do this, and store the results
in a new key for you, making it easy to generate a password, and then
format that password as needed.
safe gen secret/account password
safe fmt base64 secret/account password base64_pass
safe fmt crypt-sha512 secret/account password crypt_pass
safe get secret/account
Most commands take a path naming a secret, like secret/dc1/admin.
Some also accept a single key inside that secret, written after a
:, and a specific version of it, written after a ^:
safe get secret/dc1/admin # every key, latest version
safe get secret/dc1/admin:password # one key
safe get secret/dc1/admin^3 # every key, version 3
safe get secret/dc1/admin:password^3 # one key, version 3
The version must come last. Version numbers start at 1, and are only
meaningful on a version 2 KV mount; ^0 means the latest version,
which is the same as leaving the version off entirely.
Not every command understands all three parts, and the ones that cannot honour a key or a version say so rather than ignoring it:
-
Commands that write a whole secret —
set,ask,paste,ssh,rsa, anddhparam— take a path only. -
Commands that list what is under a path —
ls,tree,paths,values, andexport— take a path only, since a key or a version cannot scope a listing. -
genanduuidtakepath:key, which is how you name the key they are about to create. -
get,exists, anddeletetake all three. -
moveandcopytake a key or a version on the secret they read from, and a key on the one they write to.
Because : and ^ separate the parts, a path or key that contains
one has to escape it with a backslash:
safe set secret/dc1/admin 'user:name=root'
safe get 'secret/dc1/admin:user\:name'
Only the arguments safe parses need escaping. The key named on a
set is taken as written, which is why the same key goes in plain
and comes back escaped.
The backslash escapes itself as well, so a path or key holding a literal backslash takes two:
safe set 'secret/dc1/we\\ird' password=s3cr3t
safe get 'secret/dc1/we\\ird:password'
safe prints paths in this same escaped form, so anything from safe paths, safe paths --keys, safe tree --keys, or safe ls can be
pasted straight back into another command:
safe paths --keys secret/dc1/admin
secret/dc1/admin:password
secret/dc1/admin:user\:name
safe ls prints one name per entry rather than a whole path, and
escapes each name the same way, so joining a name to the path you
listed gives a path safe accepts:
safe ls secret/dc1
admin we\:ird/
safe ls 'secret/dc1/we\:ird'
haproxy
Quote these arguments, or your shell will eat the backslashes before
safe ever sees them.
Updates a single path with new keys. Any existing keys that are not specified on the command line are left intact.
You will be prompted to enter values for any keys that do not have values. This can be used for more sensitive credentials like passwords, PINs, etc.
Example:
safe set secret/root username=root password
<prompts for 'password' here...>
Similarly, safe paste works the same way, but does not have a confirmation
prompt for your value. It assumes you have pasted in the value from a known-good
source.
Setting the value of a key to be the contents of a file
Example:
safe set secret/root ssl_key@/path/to/ssl_key_file
Retrieve and print the values of one or more paths, to standard
output. This is most useful for piping credentials through
keybase or pgp for encrypting and sending to others.
safe get secret/root secret/whatever secret/key
--- # secret/root
username: root
password: it's a secret
--- # secret/whatever
whatever: is clever
--- # secret/key
private: |
-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----
public: |
-----BEGIN RSA PUBLIC KEY-----
...
-----END RSA PRIVATE KEY-----
List what sits directly under a path, one level deep: secrets plain,
folders with a trailing slash. With no path, the mounts are listed
instead. -1 prints one entry per line.
A secret is listed only if its newest version can still be read, so
one whose newest version has been deleted or destroyed is left out —
even when an older version of it is still live. Finding that out
costs a version lookup per secret, and -q skips the check and lists
those secrets too. The lookup reads version metadata rather than the
secret, so listing a folder needs no access to the values in it. Only
a version 2 mount keeps versions, so neither the check nor -q does
anything on a version 1 mount.
safe ls secret/dc1
admin concourse/
safe ls -1 secret/dc1/concourse/pipeline-the-first
aws
dockerhub
github
Provide a tree hierarchy listing of all reachable keys in the Vault.
-d draws only the folders, which is a quicker way to get your
bearings in an unfamiliar Vault. --keys names the keys inside each
secret beside it. -q skips the liveness check, exactly as it does
for ls above; with --keys the lookup is made anyway, since that is
how the keys are reached.
safe tree secret/dc1
.
└── secret/dc1/
└── concourse/
├── pipeline-the-first/
│ ├── aws
│ ├── dockerhub
│ └── github
└── pipeline-the-second/
├── aws
├── dockerhub
└── github
Provide a flat listing of all reachable keys in the Vault.
--keys prints a line per key, as path:key, rather than a line per
secret. -q skips the liveness check, exactly as it does for ls
above; with --keys the lookup is made anyway, since that is how the
keys are reached.
safe paths secret/dc1
secret/dc1/concourse/pipeline-the-first/aws
secret/dc1/concourse/pipeline-the-first/dockerhub
secret/dc1/concourse/pipeline-the-first/github
secret/dc1/concourse/pipeline-the-second/aws
secret/dc1/concourse/pipeline-the-second/dockerhub
secret/dc1/concourse/pipeline-the-second/github
Find the secrets whose latest live version contains one of the given
values, matched exactly and case-sensitively. Handy for auditing
credential reuse or locating every place a leaked value must be
rotated. Repeat -p to search several subtrees (default: secret);
with --keys, each match is printed as path:key. Values may also be
read from a file (@file), standard input (@-), or a hidden prompt
(no arguments). Subtrees the token cannot read are skipped with a
warning on standard error.
-a (--all-versions) searches the whole readable history rather than
the value in use, which is what finds a credential that has already
been rotated away. Each match is then reported as path^version, so a
hit on a superseded version reads back exactly as printed.
-d (--deleted) reaches deleted versions as well, by undeleting each
one, reading it, and deleting it again — the same cycle safe export -d uses. It writes to the Vault to answer the question, and an
interrupted search can leave a version undeleted. Destroyed versions
are gone and are searched by neither flag.
safe values -p secret/prod hunter2
secret/prod/db
secret/prod/legacy/db
safe values --keys hunter2
secret/prod/db:password
secret/prod/legacy/db:old-password
safe values --all-versions --keys hunter2
secret/prod/db:password^3
secret/prod/legacy/db:old-password^1
secret/prod/legacy/db:old-password^2
Removes multiple paths from the Vault.
safe delete secret/unused
Move a secret from oldpath to newpath, a rename of sorts.
safe move secret/staging/user secret/prod/user
(or, more succinctly, using brace expansion):
safe move secret/{staging,prod}/user
Any credentials at newpath will be completely overwritten. The
secret at oldpath will no longer exist.
Copy a secret from oldpath to newpath.
safe copy secret/staging/user secret/prod/user
(or, as with move, using brace expansion):
save copy secret/{staging,prod}/user
Any credentials at newpath will be completely overwritten. The
secret at oldpath will still exist after the copy.
Generate a new, random password. By default, the generated password will be 64 characters long.
safe gen secret/account secretkey
To get a shorter password, only 16 characters long:
safe gen 16 secret/account password
Take the key at path:oldKey, reformat it according to format_type,
and save it in path:newKey. Useful for hashing, or encoding passwords
in an alternate format (for htpass files, or /etc/shadow).
Currently supported formats:
- base64
- bcrypt
- crypt-md5
- crypt-sha256
- crypt-sha512
safe fmt base64 secret/account password base64_password
safe fmt crypt-sha512 secret/account password crypt_password
Generate a new SSH RSA keypair, adding the keys "private" and "public" to each path. The public key will be encoded as an authorized keys. The private key is a PEM-encoded DER private key.
By default, a 2048-bit key will be generated. The nbits
parameter allows you to change that.
Each path gets a unique SSH keypair.
Generate a new RSA keypair, adding the keys "private" and "public" to each path. Both keys will be PEM-encoded DER.
By default, a 2048-bit key will be generated. The nbits
parameter allows you to change that.
Each path gets a unique RSA keypair.
Echo the arguments, space-separated, as a single line to the terminal. This is a convenience helper for long pipelines of chained commands.
Issues a new X.509 TLS/SSL certificate, and stores the new RSA private key and the certificate in the Vault at path, in PEM format.
Revoke a certificate that was signed by a Certificate Authority.
The private key for the CA must be present in the Vault for this
to work. Revoked certificates will be appended to the CA's
certificate revocation list (CRL), stored at path/to/ca:crl
Run a variety of validation checks against a certificate in the
Vault. In its simplest form, without arguments, this verifies
that the private key stored at path:key matches the certificate
stored at path:certificate. Options control more powerful
validations, like checking for revocation, SAN validity, and
expiry.
Renews (re-signs) the certificate authority at path, without
affecting the list of revoked certificates.
Export the given subtree(s) in a format suitable for migration
(via a future import call), or long-term storage offline.
Secrets will not be encrypted in this representation, so care
should be taken in handling it. Output will be printed to
standard output.
By default only the latest version of each secret is exported, which
keeps the output readable by versions of safe before v1.0.0. -a
exports every version instead, in a newer format those versions cannot
read.
A secret is exported only if something in it can be read. A plain
export takes the latest version, so it skips a secret whose latest
version has been deleted or destroyed; -a keeps any secret with at
least one readable version, and records the unreadable ones in place
as empty placeholders, so the versions around them keep their numbers.
-d undeletes, reads, and re-deletes each deleted version so that it
is exported with its value rather than as a placeholder, and it also
brings in the secrets a plain export would have skipped entirely. A
destroyed version cannot be recovered and stays a placeholder either
way.
Read an export (as produced by the export subcommand) from
standard input, and write all of the secrets contained
therein to the same paths inside the targeted Vault. Trees
will be imported in an additive nature, so existing credentials
in the same subtree as imported credentials will be left intact.
If you've got an export saved in a file on-disk, you can feed
it to safe import using your shell's redirection facilities:
safe import < ./path/to/export.file
You can also use cat, in the standard UNIX idiom:
cat ./path/to/export.file | safe import
(Note: storing exports on-disk is considered bad practice, as it leaks your secrets via a shared resource: the filesystem.)
Import and export can be combined in a pipeline to facilitate movement of credentials from one Vault to another, like so:
safe -T old-vault export secret/sub/tree | \
safe -T new-vault import
Print the environment variables describing the current target:
safe env
VAULT_ADDR http://localhost:8200
VAULT_TOKEN $SOME_UUID
You can also use this command to export a target's configuration into the outer shell in order to use the Vault CLI directly:
safe env --bash
\export VAULT_ADDR=http://localhost:8200;
\export VAULT_TOKEN=$SOME_UUID;
\unset VAULT_SKIP_VERIFY;
eval $(safe env --bash)
Run the full test suite with the race detector enabled:
make test
Run tests without the race detector (faster, useful during tight edit cycles):
make test-short
Run the race detector explicitly against all packages:
go test -race ./...
Generate a coverage report:
make coverage
The coverage target writes coverage.out and prints per-function coverage
percentages. Use make coverage-html to open an interactive HTML report in
your browser.

