Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Easy file repository encryption tool based on age, focused on simplicity and gitops
Caveau is a command-line interface (CLI) tool designed for managing and encrypting secret files. This tool helps with generating key pairs, encrypting/decrypting files, and securely managing configurations.
You can use the caveau
command followed by one of the available subcommands:
npx caveau <command> [options]
init
Initializes a configuration file (.caveau.json
) in the current directory.
npx caveau init
keys:generate
Generates a new pair of private and public keys.
npx caveau keys:generate [options]
Options:
-s
, --save-private-key
: Save the private key in the user's home directory (~/.caveau-secretkey
).files:add
Adds a new file to the list of secret files to manage and encrypts it.
npx caveau files:add <path>
Arguments:
path
: Path of the secrets file to encode and add to the config file.files:decrypt
Decrypts all secret files or specific files provided.
npx caveau files:decrypt [options] [...<paths>]
Arguments:
paths
: Paths of the secret files to decrypt (optional, if not provided, all secret files will be decrypted).Options:
-o
, --stdout
: Should the decrypted content be written to stdout instead?files:edit
Opens the default file editor to change the contents of a secret file, then re-encrypts it.
npx caveau files:edit [options] <path>
Arguments:
path
: Path of the secret file to edit.Options:
-p
, --private-key
: Specify the private key to use.-d
, --decrypt
: Should the decrypted version of the file also be updated after the edit?files:reencrypt
Re-encrypts all secret files (useful when recipients change).
npx caveau files:reencrypt
files:remove
Removes a file from the list of secret files to manage and deletes the encrypted version.
npx caveau files:remove ...<paths>
Arguments:
[paths]
: Paths of the secret file to remove.Caveau uses a configuration file named .caveau.json
in the current directory. This file manages cryptographic settings and the list of encrypted files.
Here is an example configuration:
{
"$schema": "https://unpkg.com/caveau@0.2.0/schemas/config.json",
"keyring": "https://example.com/keyring.json",
"recipients": {
"type": "subset",
"teamIds": ["devs"],
"publicKeyIds": ["sarah"]
},
"files": ["secrets/file1.txt", "secrets/file2.txt"]
}
$schema
: Optional schema URL.keyring
: URL of the keyring that stores all public keys by ID.recipients
:
type
: Indicates which recipients in the keyring can decrypt the files (all
or subset
).ids
: If type is subset
, this is the list of public key IDs.files
: List of files managed by Caveau.Caveau also uses a keyring.json
file to manage public keys.
Example keyring schema:
{
"$schema": "https://unpkg.com/caveau@0.2.0/schemas/keyring.json",
"publicKeys": {
"mark": "age...",
"tom": "age...",
"sarah": "age...",
"alice": "age..."
},
"teams": {
"devs": ["mark", "tom"],
"support": ["alice"]
}
}
$schema
: Optional schema URL.publicKeys
: The list of public keys, organized by ID. Only keys starting with "age" are valid.FAQs
Easy file repository encryption tool based on age, focused on simplicity and gitops
The npm package caveau receives a total of 0 weekly downloads. As such, caveau popularity was classified as not popular.
We found that caveau demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.