Giter Site home page Giter Site logo

zsh-bitwarden's Introduction

zsh-bitwarden

This plugin provides functions to manage a bitwarden session

Installation

See INSTALL.md.

Usage

  • Use bwul to unlock the vault, setting the env variable $BW_SESSION.
  • Use bwg to generate a complex password (alphanumeric + special)
  • Use bwgs to generate a simple password (alphanumeric)
  • Use bwus SEARCH to get a username
  • Use bwuse SEARCH to edit a username
  • Use bwpw SEARCH to get a password
  • Use bwpwe SEARCH to edit a password
  • Use bwfl SEARCH FLDNAME to get a field
  • Use bwfle SEARCH FLDNAME to edit a field
  • Use bwno SEARCH to get notes
  • Use bwnoe SEARCH to edit notes
  • Use bwne SEARCH to edit an item name
  • Use bwup SEARCH to copy username then password to clipboard
  • Use bwse [OPTIONS]... JPATHS to search
  • Use bwlc [NAME] [USERNAME] to create a login item

Examples

# unlock vault
bwul
# create entry called `mylogin` with username `[email protected]` and secure password
bwg | bwlc mylogin [email protected]'
# get username and password
bwup mylogin

Notes

bwus and bwpw both delegate to bwse. bwse searches over all items letting the user select one using fzf. Each item has a set of fields some of which are set to be visible in fzf, and some of these fields can be printed as output. If a single search result is found its fields are output without interactive selection.

bwus executes bwse -c coc -s ARGS .name .login.username .notes . Here -c COLS determines columns that are displayed in fzf and those which are tab separated and included in output. o and O are output columns and are printed to stdout. o will appear in the fzf finder while O will be hidden. c is not returned in stdout and is only displayed in the fzf finder.

If you wanted bwpw to display the item ids as well as the names you could define the function

bwpw() {
  bw_unlock && bw_search -c cccOc -s "$*"\
  .id .name .login.username .login.password .notes
}

Or to output the item id as well as the password you could use

bwpw() {
  bw_unlock && bw_search -c occOc -s "$*"\
  .id .name .login.username .login.password .notes
}

This will return the item id and password in TSV format.

While bwuse and bwne accept interactive input using vared, bwpwe must have the password provided in standard input. An example of this would be bwg | bwpwe SEARCH which will generate a new random password for SEARCH and output the old password. Use of bwg is described in the bw-cli manual.

For fun if sshd is running in Termux, then to store the latest SMS DUOSEC codes in bw

bw-new-codes() {
  local codes=$(ssh $DEVICE_IP -p 8022 "termux-sms-list | jq -r '.[]"\
                    "| select(.number==\"DUOSEC\") | .body' | cut -d' ' -f3- "\
                    "| tail -1")
  bwnoe DUOSEC <<< "$codes"
}

bw-pop-duocode() {
  bwno DUOSEC | awk '{$1=""; print $0}' | bwnoe DUOSEC | awk '{print $1}'
}

bw-duocode() {
  local code=$(bw-pop-duocode)
  clipcopy <<< $code
  echo "Copied code to clipboard"
  if grep '^\W*5' <<< $code; then
    echo -n "Last duosec code. Loading new codes in... "
    sleep 1
    echo -n "1... "
    sleep 1
    echo -n "2... "
    sleep 1
    echo -n "3 "
    bw-new-codes
  fi
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.