Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorLouis-Bertrand Varin <louisbvarin@gmail.com>2017-01-07 00:25:26 +0300
committerLouis-Bertrand Varin <louisbvarin@gmail.com>2017-01-07 00:29:07 +0300
commit5bc3924756bed2cbe3a723b2ea0e18ae06f93315 (patch)
treea30c5c5b8406de345cf60f083bda9998ca0efc83 /utils
parentff6d78244bdb5b70839b211eb57827ce2c1f31d6 (diff)
Merge databases script.
Diffstat (limited to 'utils')
-rw-r--r--utils/CMakeLists.txt10
-rw-r--r--utils/merge-databases.cpp121
2 files changed, 131 insertions, 0 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
index d0cfb5a31..3887c9a22 100644
--- a/utils/CMakeLists.txt
+++ b/utils/CMakeLists.txt
@@ -25,6 +25,16 @@ target_link_libraries(kdbx-extract
${GCRYPT_LIBRARIES}
${ZLIB_LIBRARIES})
+add_executable(merge-databases merge-databases.cpp)
+target_link_libraries(merge-databases
+ keepassx_core
+ ${MHD_LIBRARIES}
+ Qt5::Core
+ Qt5::Concurrent
+ Qt5::Widgets
+ ${GCRYPT_LIBRARIES}
+ ${ZLIB_LIBRARIES})
+
add_executable(entropy-meter entropy-meter.cpp)
target_link_libraries(entropy-meter zxcvbn)
diff --git a/utils/merge-databases.cpp b/utils/merge-databases.cpp
new file mode 100644
index 000000000..9809aa1c7
--- /dev/null
+++ b/utils/merge-databases.cpp
@@ -0,0 +1,121 @@
+/*
+ * Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 or (at your option)
+ * version 3 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <stdio.h>
+
+#include <QCoreApplication>
+#include <QFile>
+#include <QSaveFile>
+#include <QStringList>
+#include <QTextStream>
+
+#include "core/Database.h"
+#include "crypto/Crypto.h"
+#include "format/KeePass2Reader.h"
+#include "format/KeePass2Writer.h"
+#include "keys/CompositeKey.h"
+#include "keys/FileKey.h"
+#include "keys/PasswordKey.h"
+
+int main(int argc, char **argv)
+{
+ QCoreApplication app(argc, argv);
+
+ if (app.arguments().size() != 4) {
+ qCritical("Usage: merge-databases <password/key file> <kdbx file1> <kdbx file2>");
+ return 1;
+ }
+
+ if (!Crypto::init()) {
+ qFatal("Fatal error while testing the cryptographic functions:\n%s", qPrintable(Crypto::errorString()));
+ }
+
+ CompositeKey key;
+ if (QFile::exists(app.arguments().at(1))) {
+ FileKey fileKey;
+ fileKey.load(app.arguments().at(1));
+ key.addKey(fileKey);
+ }
+ else {
+ PasswordKey password;
+ password.setPassword(app.arguments().at(1));
+ key.addKey(password);
+ }
+
+
+ QFile dbFile1(app.arguments().at(2));
+ if (!dbFile1.exists()) {
+ qCritical("File %s does not exist.", qPrintable(app.arguments().at(2)));
+ return 1;
+ }
+ if (!dbFile1.open(QIODevice::ReadOnly)) {
+ qCritical("Unable to open file %s.", qPrintable(app.arguments().at(2)));
+ return 1;
+ }
+
+ KeePass2Reader reader1;
+ Database* db1 = reader1.readDatabase(&dbFile1, key);
+
+ if (reader1.hasError()) {
+ qCritical("Error while parsing the database:\n%s\n", qPrintable(reader1.errorString()));
+ return 1;
+ }
+
+
+ QFile dbFile2(app.arguments().at(3));
+ if (!dbFile2.exists()) {
+ qCritical("File %s does not exist.", qPrintable(app.arguments().at(3)));
+ return 1;
+ }
+ if (!dbFile2.open(QIODevice::ReadOnly)) {
+ qCritical("Unable to open file %s.", qPrintable(app.arguments().at(3)));
+ return 1;
+ }
+
+ KeePass2Reader reader2;
+ Database* db2 = reader2.readDatabase(&dbFile2, key);
+
+ if (reader1.hasError()) {
+ qCritical("Error while parsing the database:\n%s\n", qPrintable(reader1.errorString()));
+ return 1;
+ }
+
+ db1->merge(db2);
+
+ QSaveFile saveFile(app.arguments().at(2));
+ if (!saveFile.open(QIODevice::WriteOnly)) {
+ qCritical("Unable to open file %s for writing.", qPrintable(app.arguments().at(2)));
+ return 1;
+ }
+
+ KeePass2Writer writer;
+ writer.writeDatabase(&saveFile, db1);
+
+ if (writer.hasError()) {
+ qCritical("Error while updating the database:\n%s\n", qPrintable(writer.errorString()));
+ return 1;
+ }
+
+ if (!saveFile.commit()) {
+ qCritical("Error while updating the database:\n%s\n", qPrintable(writer.errorString()));
+ return 0;
+ }
+
+ qInfo("Successfully merged the database files.\n");
+ return 1;
+
+}