From 2a18b84b0591cd2c6a3bc4b1e60c20c9ec8a9c51 Mon Sep 17 00:00:00 2001 From: Jonathan White Date: Fri, 21 Mar 2025 07:30:09 -0400 Subject: [PATCH] Add safeguards to secure input on macOS * Fixes #11906 * Disable secure input when password widget is hidden as well as focused out * Add safeguard to ensure the internal counter that macOS keeps is always set to 1 preventing the ability to disable secure input by focus/unfocus a password field --- src/gui/PasswordWidget.cpp | 2 +- src/gui/osutils/macutils/MacUtils.cpp | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/gui/PasswordWidget.cpp b/src/gui/PasswordWidget.cpp index 03751c8b1..2568ff67b 100644 --- a/src/gui/PasswordWidget.cpp +++ b/src/gui/PasswordWidget.cpp @@ -231,7 +231,7 @@ bool PasswordWidget::eventFilter(QObject* watched, QEvent* event) if (isVisible() && (type == QEvent::KeyPress || type == QEvent::KeyRelease || type == QEvent::FocusIn)) { checkCapslockState(); } - if (type == QEvent::FocusIn || type == QEvent::FocusOut) { + if (type == QEvent::FocusIn || type == QEvent::FocusOut || type == QEvent::Hide) { osUtils->setUserInputProtection(type == QEvent::FocusIn); } } diff --git a/src/gui/osutils/macutils/MacUtils.cpp b/src/gui/osutils/macutils/MacUtils.cpp index 893ec8fcc..f7b652a62 100644 --- a/src/gui/osutils/macutils/MacUtils.cpp +++ b/src/gui/osutils/macutils/MacUtils.cpp @@ -152,11 +152,18 @@ bool MacUtils::isCapslockEnabled() void MacUtils::setUserInputProtection(bool enable) { + static bool secureInputEnabled = false; if (enable) { + // Always keep the internal counter set to 1 + if (secureInputEnabled) { + DisableSecureEventInput(); + } EnableSecureEventInput(); } else { DisableSecureEventInput(); } + // Store our last known state + secureInputEnabled = enable; } /**