0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-19 20:02:18 +02:00
keepassxc/README.md

86 lines
4.7 KiB
Markdown
Raw Normal View History

2017-04-05 16:56:36 +02:00
# <img src="https://keepassxc.org/logo.png" width="40" height="40"/> KeePassXC [![Travis Build Status](https://travis-ci.org/keepassxreboot/keepassxc.svg?branch=develop)](https://travis-ci.org/keepassxreboot/keepassxc) [![Coverage Status](https://coveralls.io/repos/github/keepassxreboot/keepassxc/badge.svg)](https://coveralls.io/github/keepassxreboot/keepassxc)
2014-03-23 20:25:15 +01:00
KeePass Cross-platform Community Edition
2016-10-03 03:30:17 +02:00
## About
[KeePassXC](https://keepassxc.org) is a community fork of [KeePassX](https://www.keepassx.org/) with the goal to extend and improve it with new features and bugfixes to provide a feature-rich, fully cross-platform and modern open-source password manager.
2014-03-23 20:25:15 +01:00
2017-01-25 00:03:00 +01:00
## Additional features compared to KeePassX
2017-06-29 03:51:40 +02:00
- Auto-Type on all three major platforms (Linux, Windows, macOS)
- Twofish encryption
- YubiKey challenge-response support
- TOTP generation
- CSV import
- Command line interface
- DEP and ASLR hardening
- Stand-alone password and passphrase generator
2017-01-25 00:03:00 +01:00
- Password strength meter
- Using website favicons as entry icons
2017-01-25 00:03:00 +01:00
- Merging of databases
- Automatic reload when the database changed on disk
2017-10-20 21:13:59 +02:00
- KeePassHTTP support for use with KeePassHTTP-Connector for [Mozilla Firefox](https://addons.mozilla.org/en-US/firefox/addon/keepasshttp-connector/) and [Google Chrome or Chromium](https://chrome.google.com/webstore/detail/keepasshttp-connector/dafgdjggglmmknipkhngniifhplpcldb), and [passafari](https://github.com/mmichaa/passafari.safariextension/) in Safari.
- Many bug fixes
2017-01-25 00:03:00 +01:00
For a full list of features and changes, read the [CHANGELOG](CHANGELOG) document.
2016-10-06 05:03:13 +02:00
2017-01-25 00:03:00 +01:00
### Note about KeePassHTTP
KeePassHTTP is not a highly secure protocol and has certain flaw which allow an attacker to decrypt your passwords when they manage to intercept communication between a KeePassHTTP server and PassIFox/chromeIPass over a network connection (see [here](https://github.com/pfn/keepasshttp/issues/258) and [here](https://github.com/keepassxreboot/keepassxc/issues/147)). KeePassXC therefore strictly limits communication between itself and the browser plugin to your local computer. As long as your computer is not compromised, your passwords are fairly safe that way, but use it at your own risk!
2016-02-28 17:00:05 +01:00
### Installation
2017-01-25 00:03:00 +01:00
Pre-compiled binaries can be found on the [downloads page](https://keepassxc.org/download). Additionally, individual Linux distributions may ship their own versions, so please check out your distribution's package list to see if KeePassXC is available.
2017-04-05 11:30:39 +02:00
### Building KeePassXC
*More detailed instructions are available in the INSTALL file or on the [Wiki page](https://github.com/keepassxreboot/keepassxc/wiki/Building-KeePassXC).*
2017-01-25 00:03:00 +01:00
First, you must download the KeePassXC [source tarball](https://keepassxc.org/download#source) or check out the latest version from our [Git repository](https://github.com/keepassxreboot/keepassxc).
2017-01-25 00:03:00 +01:00
To clone the project from Git, `cd` to a suitable location and run
```bash
git clone https://github.com/keepassxreboot/keepassxc.git
```
2017-01-25 00:03:00 +01:00
This will clone the entire contents of the repository and check out the current `develop` branch.
2017-01-25 00:03:00 +01:00
To update the project from within the project's folder, you can run the following command:
```bash
git pull
```
2017-04-05 11:30:39 +02:00
Once you have downloaded the source code, you can `cd` into the source code directory, build and install KeePassXC:
2017-01-25 00:03:00 +01:00
2017-04-05 11:30:39 +02:00
```bash
2017-01-25 00:03:00 +01:00
mkdir build
cd build
cmake -DWITH_TESTS=OFF ..
make -j8
sudo make install
```
2017-03-15 15:04:43 +01:00
cmake accepts the following options:
2017-01-25 00:03:00 +01:00
2017-03-15 15:04:43 +01:00
```
2017-03-15 15:26:40 +01:00
-DWITH_XC_AUTOTYPE=[ON|OFF] Enable/Disable Auto-Type (default: ON)
-DWITH_XC_HTTP=[ON|OFF] Enable/Disable KeePassHTTP and custom icon downloads (default: OFF)
-DWITH_XC_YUBIKEY=[ON|OFF] Enable/Disable YubiKey HMAC-SHA1 authentication support (default: OFF)
2017-03-15 15:04:43 +01:00
-DWITH_TESTS=[ON|OFF] Enable/Disable building of unit tests (default: ON)
-DWITH_GUI_TESTS=[ON|OFF] Enable/Disable building of GUI tests (default: OFF)
2017-03-15 15:26:40 +01:00
-DWITH_DEV_BUILD=[ON|OFF] Enable/Disable deprecated method warnings (default: OFF)
-DWITH_ASAN=[ON|OFF] Enable/Disable address sanitizer checks (Linux / macOS only) (default: OFF)
2017-03-15 15:26:40 +01:00
-DWITH_COVERAGE=[ON|OFF] Enable/Disable coverage tests (GCC only) (default: OFF)
2017-03-15 15:04:43 +01:00
```
:exclamation: When building with ASan support on macOS, you need to use `export ASAN_OPTIONS=detect_leaks=0` before running the tests (no LSan support in macOS).
### Contributing
We are always looking for suggestions how to improve our application. If you find any bugs or have an idea for a new feature, please let us know by opening a report in our [issue tracker](https://github.com/keepassxreboot/keepassxc/issues) on GitHub or join us on IRC on freenode channels #keepassxc or #keepassxc-dev.
2017-01-25 00:03:00 +01:00
You can of course also directly contribute your own code. We are happy to accept your pull requests.
2017-04-05 11:30:39 +02:00
Please read the [CONTRIBUTING document](.github/CONTRIBUTING.md) for further information.