Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cryptr | 429 | 3 months ago | 8 | apache-2.0 | HTML | |||||
Cryptr: a GUI for Hashicorp's Vault | ||||||||||
Playervaults | 32 | 6 days ago | 6 | lgpl-2.1 | PHP | |||||
Per-player GUI-based vaults plugin for PocketMine-MP | ||||||||||
Cloak | 6 | 3 months ago | 16 | gpl-3.0 | Go | |||||
Yet another GUI app for gocryptfs. | ||||||||||
Globalchestshop | 4 | 5 years ago | 1 | Java | ||||||
Minecraft - Spigot GUI Shop & Auction House | A simple but powerful GUI based shop and auction system. Players will be able to create their own chest based shops and offer their goods to the entire server. Players will no longer need to run around and search for good trades. With this plugin players will be able to find all they need in one place. Requires Vault and MySQL | ||||||||||
Partition Safe | 2 | 6 years ago | 6 | mit | C | |||||
The vault of the century! | ||||||||||
Ansible Scale Gui | 2 | 3 years ago | 1 | mit | ||||||
Ansible role for installing and configuring IBM Spectrum Scale (GPFS) Graphical User Interface (GUI) | ||||||||||
Lightning Vault | 2 | 4 years ago | C++ | |||||||
Lightning vault client side GUI program. |
Cryptr is a GUI for Hashicorp's Vault.
Using Cryptr, a user may manage secrets in their Vault instance: reading, creating, and modifying secrets with ease.
The current release can be downloaded here.
Cryptr supports Windows, Linux and macOS. It has been tested on Windows 10, Ubuntu 17.04 Desktop, and macOS 10.15 Catalina.
On macOS, you may be warned about untrusted developers when you first attempt to launch Cryptr. To resolve this, open Finder, navigate to Applications, right-click on Cryptr.app and click Open. You can then confirm you want to allow Cryptr to be opened.
For Linux, use the .AppImage
files. They are self-contained binaries that run on every major linux distro. Just make it executable and run it. AppImage information here!
Cryptr can be installed via Homebrew where Cryptr is available as a cask. Just type
brew cask install cryptr
You only need to do this if you want to contribute code, or run Cryptr in developer mode. (For Linux binaries, see above).
git clone https://github.com/jcrowthe/cryptr.git
cd cryptr
npm install
npm run dev
In addition to the default feature-set of Vault, Cryptr adds some things that are "nice to have". Some of these include:
secret/My_cool_Secret
shows up in the folder structure as My cool Secret
Apache 2.0 License
Currently LDAP, UserPass and Token auth backends are accepted. Most others are not useful for a GUI, but if you feel otherwise, submit a pull request or open an issue.
Cryptr requires that policies associated with a token to be readable by that token. The purpose for this is to discover what secrets are available to the token. An example ACL for a policy found at sys/policy/demo
would be as follows:
path "secret/mysecrets/*" {
policy = "write"
}
path "sys/policy/demo" {
policy = "read"
}
Only the permission to read
is advised for the policy. NOTE: This policy addition is critical to discovering available secrets. Without this, there is no programatic way for Cryptr to know what secrets it can query to show the user. (Also, for that matter, there is no way for a human using the CLI to discover secrets, except for blindly attempting to list
potential folders). As such, it is highly recommended to do this for all policies. All policies without this ability must necessarily be ignored by Cryptr.
Cryptr currently only supports glob characters at the folder level (ie. secret/*
), and not as a suffix (ie. secret/group*
). This is due to the lack of any ability to list based on a prefix. As noted here, list
command outputs are not filtered by policy. You are welcome to add list
permissions on the containing folder, but know that this is not recommended.