A feature-packed Bitwarden compatible desktop integration
Go to file
2024-05-04 00:04:18 +02:00
.github Fix release pipeline builds for windows and mac 2024-04-28 18:10:54 +02:00
agent Merge pull request #186 from quexten/feature/detect-old-cipher 2024-04-30 00:53:25 +02:00
autotype Add experimental persistent autotype permission 2024-04-28 21:50:22 +02:00
browserbiometrics Fix browser biometrics integration 2024-04-29 19:49:57 +02:00
client Fix incorrectly moved ssh socket path 2024-02-22 14:38:38 +01:00
cmd Fix typos 2024-04-05 21:06:23 +02:00
gui Add x11 autotype 2024-05-04 00:04:18 +02:00
ipc Implement initial pinentry 2024-02-09 00:24:28 +01:00
logging Add more env variables 2023-08-21 18:37:34 +02:00
resources Update polkit policy 2023-09-19 22:29:21 +02:00
.gitignore Add GTK blueprint for settings 2024-04-30 22:53:29 +02:00
com.quexten.Goldwarden.yml Fix flatpak 2024-05-03 22:16:48 +02:00
go.mod Add forked dependency 2024-04-29 22:06:14 +02:00
go.sum Add forked dependency 2024-04-29 22:06:14 +02:00
LICENSE Initial commit 2023-07-17 03:23:26 +02:00
main.go Improve overhaul error handling 2024-03-15 16:22:45 +01:00
PKGBUILD Update PKGBUILD 2024-04-30 00:54:51 +02:00
Readme.md Update Readme.md 2024-05-03 22:58:26 +02:00

Goldwarden

Goldwarden is a Bitwarden compatible desktop client. It focuses on providing useful desktop features that the official tools do not (yet) have or are not willing to add (for example, because the integrations are not mature enough for a broad userbase), and enhanced security measures that other tools do not provide, such as:

  • Support for SSH Agent (Git signing and SSH login)
  • System wide autotype (Linux - Gnome, KDE only for now)
  • Biometric authentication
  • Implements Bitwarden browser-extension biometrics on Linux
  • Support for injecting environment variables into the environment of a cli command
  • Vault content is held encrypted in memory and only briefly decrypted when needed
  • Kernel level memory protection for keys (via the memguard library)
  • Additional measures to protect against memory dumps
  • Passwordless login (Both logging in, and approving logins)
  • Fido2 (Webauthn) support
  • more to come...?

The aim is not to replace the official clients, but to complement by implementing the missing features.

Requirements

Right now, Goldwarden is only tested on Linux. Somewhat feature-stripped builds for Mac and Windows are available too, but untested. Autotype is currently implemented via the remotedesktop portal. This is supported on KDE and Gnome, but not yet on wl-root based environments.

Installation

Flatpak

There is a flatpak that includes a small UI, autotype functionality and autostarting of the daemon.

Download on Flathub

CLI

Arch (AUR)

On Arch linux, or other distributions with access to the AUR, simply:

yay -S goldwarden

should be enough to install goldwarden on your system.

Deb / RPM

For deb/rpm, download the deb/rpm from the latest release on GitHub and install it using your package manager.

NixOS

environment.systemPackages = [
  pkgs.goldwarden
];
Github Binary Releases

On other distributions, Mac and Windows, you can download it from the latest release on GitHub and put it into a location you want to have it in, f.e /usr/bin.

Compiling

Alternatively, you can build it yourself.

go install github.com/quexten/goldwarden@latest

Setup and Usage

To get started, follow the instructions provided in the wiki https://github.com/quexten/goldwarden/wiki/Getting-Started. For instructions on specific features, also consult the wiki page for the feature.

Contributing

Interested in contributing a feature or bug-fix? Great! Here is some information on how to set up your development environment:

https://github.com/quexten/goldwarden/wiki/Setting-up-the-Development-Environment

After that, create a PR. If you encounter any issues, feel free to open a discussion thread.