4 releases

0.6.0 Oct 24, 2024
0.5.3 Sep 27, 2024
0.5.1 Aug 19, 2024
0.5.0 Jun 23, 2024

#146 in Command line utilities

Download history 98/week @ 2024-08-13 56/week @ 2024-08-20 2/week @ 2024-08-27 10/week @ 2024-09-10 4/week @ 2024-09-17 202/week @ 2024-09-24 56/week @ 2024-10-01 2/week @ 2024-10-08 116/week @ 2024-10-22

192 downloads per month

MIT license

130KB
3.5K SLoC

Run tests

syspass-cli

A simple command line tool to interact with sysPass databases.

sysPass Intuitive, secure and multiuser password manager

Features

  • Supports sysPass 2.1 and 3.2
    • 2.1 has limited functionality because the API doesn't support all the features such as but not limited to:
      • Changing passwords
  • Search for accounts and view their passwords
  • Add new entries and change passwords from the commandline
  • Add new categories from the commandline
  • Add new clients from the commandline

Installation

From source

git clone https://github.com/ggnosh/syspass-cli.git
cd syspass-cli
cargo build --release
# cp target/release/syspass-cli somewhere

Cargo

If you already have a Rust environment set up, you can use the cargo install command:

cargo install syspass-cli

From release

Download binary from https://github.com/ggnosh/syspass-cli/releases

Configuration

syspass-cli will look for a configuration file in $(HOME)/.syspass/config.json

NOTE The password can be set in plaintext in the config.json file or as an environment variable. If no SYSPASS_PASSWORD is found, syspass-cli will prompt for it.

Config file

Create a config file at $(HOME)/.syspass/config.json

{
  "host": "https://example.org/api.php",
  "token": "AUTHORIZATION_TOKEN",
  "password": "PASSWORD",
  "verifyHost": true,
  "passwordTimeout": 15,
  "apiVersion": "SyspassV3",
  "noShell": false,
  "noClipboard": false
}

noShell implies --no-shell when searching noClipboard implies --show-password when searching and doesn't try to copy things to the clipboard.

If password is empty it will be prompted when needed.

passwordTimeout if the value is 0 this feature is ignored. Otherwise, the clipboard will be cleared after given seconds unless the --showpassword flag is given.

apiVersion defines which API to use. Supported values are SyspassV2 and SyspassV3. If value is not defined the syspass-cli defaults to newest sysPass version.

Usage file

Located at $(HOME)/.syspass/usage.json

This file is used to sort the most commonly used accounts. The behaviour can be disabled by using -u or --disableusage during account search.

Usage:

Usage: syspass-cli [OPTIONS] [COMMAND]

Commands:
  search, -s    Search for account password [aliases: find]
  edit, -e      Edit entity [aliases: change]
  remove, -r    Remove entity [aliases: delete]
  new, -n       Add a new entity [aliases: add]
  check-update  Update syspass-cli
  help          Print this message or the help of the given subcommand(s)

Options:
  -c, --config <FILE>              Sets a custom config file
  -d, --debug                      Output debug information
  -q, --quiet                      Do not output any message
  -v, --verbose                    Output more information
      --completions <completions>  Output debug information [possible values: bash, elvish, fish, powershell, zsh]
  -h, --help                       Print help
  -V, --version                    Print version

Completions

  • Shell completions for relevant shells, by invoking syspass-cli --completions after building, e.g.
syspass-cli --completions zsh | sudo tee /usr/share/zsh/site-functions/_syspass-cli > /dev/null

For development see DEVELOPMENT.md

Dependencies

~14–34MB
~489K SLoC