Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romeovs/spass
https://github.com/romeovs/spass
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/romeovs/spass
- Owner: romeovs
- Created: 2023-08-02T21:12:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-17T17:33:25.000Z (10 months ago)
- Last Synced: 2024-04-17T01:45:44.365Z (7 months ago)
- Language: Go
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spaß
A [`pass`](https://www.passwordstore.org/)-compatible password manager for the cli.
`spass` is fully backwards compatible with [GNU `pass`](https://www.passwordstore.org/),
but adds a couple of extra features which are nice.Where `pass`' secret format is almost completely free-form ,
`spass` adds the concept of "named fields" which are a bit like HTTP-headers
and can help you organise the data in your secrets.A secret has the following structure:
```:
```
For example:
```
pa$$w0rd
domain: example.com
This is some unstructured data that does not have a field name.
issuer: google.com
username: john-doe
````spass` also adds support for generating One-Time Passwords (OTPs).
When one of the fields in the secret is a valid
[`otpauth://` uri](https://github.com/google/google-authenticator/wiki/Key-Uri-Format)
`spass` will be able to generate an OTP for it.## Usage
```
NAME:
spass - a fun password manager, compatible with pass.USAGE:
spass [global options] command [command options] [arguments...]COMMANDS:
env print the relevant environment variables or defaults
list, ls list the secrets in the password store
pass show the password for the specified secret
show show all the info for the specified secret
generate generate a new password and store as a secret under the provided name
edit edit the contents of the specified secret
remove, rm delete a secret in the store
get get the value of the key in the specified secret
otp get an one time password from the specified secret
pwnd check if the password in the specified secret was pwnd
search search for a secret containg the query
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--help, -h show help
```