Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kilavila/.vilath

CLI based password manager using GnuPG
https://github.com/kilavila/.vilath

command-line-tool encryption-decryption gnupg password-generator password-manager password-safety password-store

Last synced: about 1 month ago
JSON representation

CLI based password manager using GnuPG

Awesome Lists containing this project

README

        

# Vilath - Password manager
CLI password manager to organize and keep your passwords safe.

Uses GnuPG for encryption and generates strong, 32-character length passwords.

---

### Update
> Added dmenu for quick copying passwords.

Download and install dmenu: https://tools.suckless.org/dmenu/

```
$ vilath menu
```

---

### Getting started
Clone this directory and move script into bin, set up GnuPG RSA private and public keys, then initialize the password store.
```
$ cd ~
$ git clone https://github.com/kilavila/.vilath.git
$ sudo cp ~/.vilath/.bin/vilath /usr/bin/vilath
$ gpg --full-generate-key
$ vilath init [email protected]
```

### Usage
Generate, list, view and edit password store.

```sh
$ vilath generate web/mail
$ vilath list
# view hides password by default
# use -a to view entire password file
# or -c to copy password to clipboard
# f.ex: vilath view web/mail -a
$ vilath view web/mail
$ vilath edit web/mail
```

### Help
To view more examples and flags etc.

```
$ vilath --help
```