From 695b550e6b4ad87a37f861333ac5e263255adcce Mon Sep 17 00:00:00 2001 From: Stefan Forstenlechner Date: Mon, 17 Jun 2024 23:41:56 +0200 Subject: [PATCH] Add KeePass header check for testing remote download (#10910) --- share/translations/keepassxc_en.ts | 12 ++++++++---- src/gui/remote/DatabaseSettingsWidgetRemote.cpp | 17 ++++++++++++++++- src/gui/remote/DatabaseSettingsWidgetRemote.h | 2 ++ 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/share/translations/keepassxc_en.ts b/share/translations/keepassxc_en.ts index 91467de501..51282074f9 100644 --- a/share/translations/keepassxc_en.ts +++ b/share/translations/keepassxc_en.ts @@ -2332,10 +2332,6 @@ removed from the database. Download failed with error: %1 - - Download finished, but file %1 could not be found. - - Download successful. @@ -2368,6 +2364,14 @@ The command has to exit. In case of `sftp` as last command `exit` has to be sent + + Command finished, but downloaded file does not exist. + + + + Download finished, but file failed KeePass header check. File is not a KeePass file or it's an unsupported version + + DatabaseTabWidget diff --git a/src/gui/remote/DatabaseSettingsWidgetRemote.cpp b/src/gui/remote/DatabaseSettingsWidgetRemote.cpp index b38bd828c7..dce1238776 100644 --- a/src/gui/remote/DatabaseSettingsWidgetRemote.cpp +++ b/src/gui/remote/DatabaseSettingsWidgetRemote.cpp @@ -18,6 +18,7 @@ #include "DatabaseSettingsWidgetRemote.h" #include "ui_DatabaseSettingsWidgetRemote.h" +#include "core/Database.h" #include "core/Global.h" #include "core/Metadata.h" @@ -191,10 +192,24 @@ void DatabaseSettingsWidgetRemote::testDownload() } if (!QFile::exists(result.filePath)) { - m_ui->messageWidget->showMessage(tr("Download finished, but file %1 could not be found.").arg(result.filePath), + m_ui->messageWidget->showMessage(tr("Command finished, but downloaded file does not exist."), + MessageWidget::Error); + return; + } + + if (!hasValidPublicHeaders(result.filePath)) { + m_ui->messageWidget->showMessage(tr("Download finished, but file failed KeePass header check. File is not a " + "KeePass file or it's an unsupported version"), MessageWidget::Error); return; } m_ui->messageWidget->showMessage(tr("Download successful."), MessageWidget::Positive); +} + +bool DatabaseSettingsWidgetRemote::hasValidPublicHeaders(QString& filePath) { + // Read public headers + QString error; + QScopedPointer db(new Database()); + return db->open(filePath, nullptr, &error); } \ No newline at end of file diff --git a/src/gui/remote/DatabaseSettingsWidgetRemote.h b/src/gui/remote/DatabaseSettingsWidgetRemote.h index fe91b94a79..8f77498d65 100644 --- a/src/gui/remote/DatabaseSettingsWidgetRemote.h +++ b/src/gui/remote/DatabaseSettingsWidgetRemote.h @@ -56,6 +56,8 @@ private slots: QListWidgetItem* findItemByName(const QString& name); void clearFields(); + bool hasValidPublicHeaders(QString& filePath); + QScopedPointer m_remoteSettings; const QScopedPointer m_ui; bool m_modified = false;