v0.1. can login and interact with vault fully automated without exposing login details. success.

This commit is contained in:
Charles N Wyble 2024-11-29 14:18:06 -06:00
parent 0b1c955d4d
commit 7470bbd58b

36
poc.sh Normal file
View File

@ -0,0 +1,36 @@
#!/bin/bash
# A quick and dirty proof of concept to capture bitwarden cli workflow
# A reduction to practice of the data From https://bitwarden.com/help/cli/
clear
####################################
## Step 0: Set to use tsys server
####################################
echo "Setting cli to use tsys bitwarden server..."
bw config server https://pwvault.turnsys.com
####################################
## Step 1: login to bitwarden
####################################
# From: https://bitwarden.com/help/cli/#using-an-api-key
### Set apikey environment varaible
echo "Sourcing clientid/apikey data..."
source D:/tsys/secrets/bitwarden/data/apikey-bitwarden-reachableceo
### Login to vault using apikey...
echo "Logging in..."
bw login --apikey $BW_CLIENTID $BW_CLIENTSECRET
### Step 1.1: unlock / save session id
echo "Unlocking..."
export BW_SESSION="$(bw unlock --passwordenv TSYS_BW_PASSWORD_REACHABLECEO --raw)"
bw list items