lesspass-client

Made with Rust Gluten Free It works

A Rust client for LessPass server API, library and CLI.

Installation

From binary

Simply download latest release from releases page.

From source

Installing Rust

lesspass-client build has been tested with current Rust stable release version 1.57.0. You can install Rust from your distribution package or use rustup. rustup default stable

If you prefer, you can use the stable version only for install lesspass-client. rustup override set stable

Building lesspass-client

To build lesspass-client simply execute the following commands. sh git clone https://github.com/ogarcia/lesspass-client.git cd lesspass-client cargo build --release

Usage

Main command help. ``` LessPass server API client library and CLI written in Rust

Usage: lesspass-client [OPTIONS]

Commands: user User related commands password Password related commands help Print this message or the help of the given subcommand(s)

Options: -s, --server URL of LessPass server [env: LESSPASSHOST=] [default: https://api.lesspass.com] -u, --user Username for auth on the LessPass server [env: LESSPASSUSER=] -p, --password Password for auth on the LessPass server [env: LESSPASSPASS=] -m, --master-password Master password (only needed to print site passwords) [env: LESSPASSMASTERPASS=] -v, --verbose... Sets the level of verbosity -h, --help Print help information -V, --version Print version information

EXAMPLES: Get the password list specifying the server and without token cached: lesspass-client -s http://localhost:8000 -u user@sample.com -p passwd password list

Show a password: lesspass-client password show sample.site.com

Add a new password: lesspass-client password add sample.site.com user@site.com

Update a existing password (you need the ID from password show command): lesspass-client password update eed5950b-97f2-4ba9-bf09-7784b6c7e5a2 new.url.com new@email.com ```

In first time use you need to pass username and password to perform login. After first run, lesspass-client stores the login token in your XDG_CACHE_HOME directory and you can run commands without the need to pass username and password again.

To pass configuration values you can use the CLI options or following environment variables.

| Variable | Used for | | --- | --- | | LESSPASSHOST | URL of API server (deafult https://api.lesspass.com) | | LESSPASSUSER | Username (ex. user@example.com) | | LESSPASSPASS | Password | | LESSPASSMASTERPASS | Master password (only needed to print site passwords) |

Every command an subcommand has its own help, simply pass -h or --help to see it.