search for: bitwarden

Displaying 3 results from an estimated 3 matches for "bitwarden".

2020 Nov 23
6
Password manager for the command line ?
Hi, On my workstation and my laptop I'm using KeePassXC to store login credentials for my websites. The database is stored in my OwnCloud share, so it's synchronized between my two computers. Ideally I'd like to have something similar for my servers, but command-line driven. I know these tools exist but I haven't tested them yet. What I have in mind is a command-line password
2020 Oct 02
7
[Bug 3218] New: Support fingerprint user validation
...All OS: All Status: NEW Severity: enhancement Priority: P5 Component: ssh-keygen Assignee: unassigned-bugs at mindrot.org Reporter: pflug at pse-consulting.de I'm using a Trustkey G310. On Webauthn enabled sites (e.g. Bitwarden), the key requires a valid fingerprint to authenticate, effectively making the key two factors at once. While -O verify-required does validate against the key's PIN, it doesn't request fingerprint verification. I'd like to see the fingerprint user validation to be supported. -- You...
2023 Dec 16
0
[Bug 3644] New: Pass the number of attempt to SSH_ASKPASS
...wing bash script> ``` bash script: ``` #!/usr/bin/env bash key_name=$(echo "$1" | sed -n "s/.*\/\([^\/]*\)'.*/\1/p") pass=$(get-passphrase-command "$key_name") if [ $? -eq 0 ]; then echo "$pass" else echo "Couldn't find passphrase from Bitwarden." >&2 read -s -p "$1" passphrase echo "" >&2 echo "$passphrase" fi ``` `ssh` will run this script every time it wants to request a passphrase. If a passphrase returned by the script is not correct, `ssh` will run the script 2 more times. The...