KeePassXC is a cross-platform community-driven port of the Windows application “Keepass Password Safe”.
Go to file
2017-01-28 23:24:12 +01:00
.github Update CONTRIBUTING.md 2017-01-27 23:32:13 +00:00
.tx Moved transifex to new url 2016-11-11 16:30:57 -05:00
cmake Fix Windows linker and runtime errors when building against static Qt 2017-01-26 01:15:12 +01:00
setup/gui Add icon and desktop file to snapcraft build (#91) 2016-11-11 11:34:32 -05:00
share Add some password-related feature (#92) 2016-11-23 21:59:24 -05:00
src Merge branch 'develop' into meta/release-preparation 2017-01-28 23:02:57 +01:00
tests Merge branch 'develop' into meta/release-preparation 2017-01-28 23:02:57 +01:00
utils Fix Windows linker and runtime errors when building against static Qt 2017-01-26 01:15:12 +01:00
.gitattributes Add release preparation script and AppImage recipe 2017-01-22 18:42:56 +01:00
.gitignore Updated readme file 2016-10-05 23:03:13 -04:00
.travis.yml Removed snapcraft and unspecified unique gcc build 2017-01-14 22:53:35 -05:00
AppImage-Recipe.sh Fix AppImage not launching on all platforms 2017-01-25 13:22:23 +01:00
CHANGELOG Formatting 2017-01-22 20:15:58 +01:00
CMakeLists.txt Add missing find_package call 2017-01-26 02:58:46 +01:00
COPYING Add some password-related feature (#92) 2016-11-23 21:59:24 -05:00
Dockerfile Add wget, file, fuse and python for building AppImages inside the container 2017-01-25 13:22:21 +01:00
INSTALL.md Updated INSTALL documentation. (#140) 2017-01-04 18:47:29 -05:00
LICENSE.BOOST-1.0 Display git revision in about dialog. 2015-07-18 13:14:13 +02:00
LICENSE.BSD Add crypto classes and tests. Link to libgcrypt. 2010-09-11 19:49:30 +02:00
LICENSE.CC0 Fix database icons license issues. 2013-03-23 21:50:23 +01:00
LICENSE.GPL-2 Add "LICENSE" prefix to license filenames. 2010-08-15 12:33:42 +02:00
LICENSE.GPL-3 Add "LICENSE" prefix to license filenames. 2010-08-15 12:33:42 +02:00
LICENSE.LGPL-2.1 Fix typo in filename. 2013-03-24 14:16:34 +01:00
LICENSE.LGPL-3 Add LGPL-3 license text for the Oxygen icons. 2013-03-24 11:54:20 +01:00
LICENSE.NOKIA-LGPL-EXCEPTION Add support for gzip compressed databases. 2010-09-23 22:27:59 +02:00
README.md Update README 2017-01-25 00:03:00 +01:00
release-tool Use correct AppImage-Recipe.sh 2017-01-28 23:24:12 +01:00
snapcraft.yaml Updated snapcraft file for release 2017-01-22 10:40:24 -08:00

KeePassXC - KeePass Cross-platform Community Edition

Travis Build Status Coverage Status

About

KeePassXC is a fork of KeePassX that aims to incorporate stalled pull requests, features, and bug fixes that have never made it into the main KeePassX repository.

Additional features compared to KeePassX

  • Autotype on all three major platforms (Linux, Windows, OS X)
  • Stand-alone password generator
  • Password strength meter
  • Use website's favicons as entry icons
  • Merging of databases
  • Automatic reload when the database changed on disk
  • KeePassHTTP support for use with PassIFox in Mozilla Firefox and chromeIPass in Google Chrome or Chromium.

For a full list of features and changes, read the CHANGELOG document.

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 and here). 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 still use it at your own risk!

Installation

Pre-compiled binaries can be found on the downloads page. Additionally, individual Linux distributions may ship their own versions, so please check out your distribution's package list to see if KeePassXC is available.

Building KeePassXC yourself

More detailed instructions are available in the INSTALL file or on the Wiki page.

First, you must download the KeePassXC source tarball or check out the latest version from our Git repository.

To clone the project from Git, cd to a suitable location and run

git clone https://github.com/keepassxreboot/keepassxc.git

This will clone the entire contents of the repository and check out the current develop branch.

To update the project from within the project's folder, you can run the following command:

git pull

Once you have downloaded the source code, you can cd into the source code directory and build and install KeePassXC with

mkdir build
cd build
cmake -DWITH_TESTS=OFF ..
make -j8
sudo make install

To enable autotype, add -DWITH_XC_AUTOTYPE=ON to the cmake command. KeePassHTTP support is compiled in by adding -DWITH_XC_HTTP=ON. If these options are not specified, KeePassXC will be built without these plugins.

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 on GitHub or write to our Google Groups forum.

You can of course also directly contribute your own code. We are happy to accept your pull requests.

Please read the CONTRIBUTING document for further information.