-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Password Health Check #3993
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
droidmonkey
merged 2 commits into
keepassxreboot:develop
from
wolframroesler:feature/healthcheck
Feb 1, 2020
Merged
Password Health Check #3993
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,184 @@ | ||
| /* | ||
| * Copyright (C) 2019 KeePassXC Team <team@keepassxc.org> | ||
| * | ||
| * 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 <QApplication> | ||
| #include <QString> | ||
|
|
||
| #include "Database.h" | ||
| #include "Entry.h" | ||
| #include "Group.h" | ||
| #include "PasswordHealth.h" | ||
| #include "zxcvbn.h" | ||
|
|
||
| PasswordHealth::PasswordHealth(double entropy) | ||
| : m_score(entropy) | ||
| , m_entropy(entropy) | ||
| { | ||
| switch (quality()) { | ||
| case Quality::Bad: | ||
| case Quality::Poor: | ||
| m_scoreReasons << QApplication::tr("Very weak password"); | ||
| m_scoreDetails << QApplication::tr("Password entropy is %1 bits").arg(QString::number(m_entropy, 'f', 2)); | ||
| break; | ||
|
|
||
| case Quality::Weak: | ||
| m_scoreReasons << QApplication::tr("Weak password"); | ||
| m_scoreDetails << QApplication::tr("Password entropy is %1 bits").arg(QString::number(m_entropy, 'f', 2)); | ||
| break; | ||
|
|
||
| default: | ||
| // No reason or details for good and excellent passwords | ||
| break; | ||
| } | ||
| } | ||
|
|
||
| PasswordHealth::PasswordHealth(QString pwd) | ||
| : PasswordHealth(ZxcvbnMatch(pwd.toLatin1(), nullptr, nullptr)) | ||
| { | ||
| } | ||
|
|
||
| void PasswordHealth::setScore(int score) | ||
| { | ||
| m_score = score; | ||
| } | ||
|
|
||
| void PasswordHealth::adjustScore(int amount) | ||
| { | ||
| m_score += amount; | ||
| } | ||
|
|
||
| QString PasswordHealth::scoreReason() const | ||
| { | ||
| return m_scoreReasons.join("\n"); | ||
| } | ||
|
|
||
| void PasswordHealth::addScoreReason(QString reason) | ||
| { | ||
| m_scoreReasons << reason; | ||
| } | ||
|
|
||
| QString PasswordHealth::scoreDetails() const | ||
| { | ||
| return m_scoreDetails.join("\n"); | ||
| } | ||
|
|
||
| void PasswordHealth::addScoreDetails(QString details) | ||
| { | ||
| m_scoreDetails.append(details); | ||
| } | ||
|
|
||
| PasswordHealth::Quality PasswordHealth::quality() const | ||
| { | ||
| if (m_score <= 0) { | ||
| return Quality::Bad; | ||
| } else if (m_score < 40) { | ||
| return Quality::Poor; | ||
| } else if (m_score < 65) { | ||
| return Quality::Weak; | ||
| } else if (m_score < 100) { | ||
| return Quality::Good; | ||
| } | ||
| return Quality::Excellent; | ||
| } | ||
|
|
||
| /** | ||
| * This class provides additional information about password health | ||
| * than can be derived from the password itself (re-use, expiry). | ||
| */ | ||
| HealthChecker::HealthChecker(QSharedPointer<Database> db) | ||
| { | ||
| // Build the cache of re-used passwords | ||
| for (const auto* entry : db->rootGroup()->entriesRecursive()) { | ||
| if (!entry->isRecycled()) { | ||
| m_reuse[entry->password()] | ||
| << QApplication::tr("Used in %1/%2").arg(entry->group()->hierarchy().join('/'), entry->title()); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * Call operator of the Health Checker class. | ||
| * | ||
| * Returns the health of the password in `entry`, considering | ||
| * password entropy, re-use, expiration, etc. | ||
| */ | ||
| QSharedPointer<PasswordHealth> HealthChecker::evaluate(const Entry* entry) const | ||
| { | ||
| // Pointer sanity check | ||
| if (!entry) { | ||
| return {}; | ||
| } | ||
|
|
||
| // First analyse the password itself | ||
| const auto pwd = entry->password(); | ||
| auto health = QSharedPointer<PasswordHealth>(new PasswordHealth(pwd)); | ||
|
|
||
| // Second, if the password is in the database more than once, | ||
| // reduce the score accordingly | ||
| const auto& used = m_reuse[pwd]; | ||
| const auto count = used.size(); | ||
| if (count > 1) { | ||
| constexpr auto penalty = 15; | ||
| health->adjustScore(-penalty * (count - 1)); | ||
| health->addScoreReason(QApplication::tr("Password is used %1 times").arg(QString::number(count))); | ||
| // Add the first 20 uses of the password to prevent the details display from growing too large | ||
| for (int i = 0; i < used.size(); ++i) { | ||
| health->addScoreDetails(used[i]); | ||
| if (i == 19) { | ||
| health->addScoreDetails(QStringLiteral("...")); | ||
| break; | ||
| } | ||
| } | ||
|
|
||
| // Don't allow re-used passwords to be considered "good" | ||
| // no matter how great their entropy is. | ||
| if (health->score() > 64) { | ||
| health->setScore(64); | ||
| } | ||
| } | ||
|
|
||
| // Third, if the password has already expired, reduce score to 0; | ||
| // or, if the password is going to expire in the next 30 days, | ||
| // reduce score by 2 points per day. | ||
| if (entry->isExpired()) { | ||
| health->setScore(0); | ||
| health->addScoreReason(QApplication::tr("Password has expired")); | ||
| health->addScoreDetails(QApplication::tr("Password expiry was %1") | ||
| .arg(entry->timeInfo().expiryTime().toString(Qt::DefaultLocaleShortDate))); | ||
| } else if (entry->timeInfo().expires()) { | ||
| const auto days = QDateTime::currentDateTime().daysTo(entry->timeInfo().expiryTime()); | ||
| if (days <= 30) { | ||
| // First bring the score down into the "weak" range | ||
| // so that the entry appears in Health Check. Then | ||
| // reduce the score by 2 points for every day that | ||
| // we get closer to expiry. days<=0 has already | ||
| // been handled above ("isExpired()"). | ||
| if (health->score() > 60) { | ||
| health->setScore(60); | ||
| } | ||
| health->adjustScore((30 - days) * -2); | ||
| health->addScoreReason(days <= 2 ? QApplication::tr("Password is about to expire") | ||
| : days <= 10 ? QApplication::tr("Password expires in %1 days").arg(days) | ||
| : QApplication::tr("Password will expire soon")); | ||
| health->addScoreDetails(QApplication::tr("Password expires on %1") | ||
| .arg(entry->timeInfo().expiryTime().toString(Qt::DefaultLocaleShortDate))); | ||
| } | ||
| } | ||
|
|
||
| // Return the result | ||
| return health; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,111 @@ | ||
| /* | ||
| * Copyright (C) 2019 KeePassXC Team <team@keepassxc.org> | ||
| * | ||
| * 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/>. | ||
| */ | ||
|
|
||
| #ifndef KEEPASSX_PASSWORDHEALTH_H | ||
| #define KEEPASSX_PASSWORDHEALTH_H | ||
|
|
||
| #include <QHash> | ||
| #include <QSharedPointer> | ||
| #include <QStringList> | ||
|
|
||
| class Database; | ||
| class Entry; | ||
|
|
||
| /** | ||
| * Health status of a single password. | ||
| * | ||
| * @see HealthChecker | ||
| */ | ||
| class PasswordHealth | ||
| { | ||
| public: | ||
| explicit PasswordHealth(double entropy); | ||
| explicit PasswordHealth(QString pwd); | ||
|
|
||
| /* | ||
| * The password score is defined to be the greater the better | ||
| * (more secure) the password is. It doesn't have a dimension, | ||
| * there are no defined maximum or minimum values, and score | ||
| * values may change with different versions of the software. | ||
| */ | ||
| int score() const | ||
| { | ||
| return m_score; | ||
| } | ||
|
|
||
| void setScore(int score); | ||
| void adjustScore(int amount); | ||
|
|
||
| /* | ||
| * A text description for the password's quality assessment | ||
| * (translated into the application language), and additional | ||
| * information. Empty if nothing is wrong with the password. | ||
| * May contain more than line, separated by '\n'. | ||
| */ | ||
| QString scoreReason() const; | ||
| void addScoreReason(QString reason); | ||
|
|
||
| QString scoreDetails() const; | ||
| void addScoreDetails(QString details); | ||
|
|
||
| /* | ||
| * The password quality assessment (based on the score). | ||
| */ | ||
| enum class Quality | ||
| { | ||
| Bad, | ||
| Poor, | ||
| Weak, | ||
| Good, | ||
| Excellent | ||
| }; | ||
| Quality quality() const; | ||
|
|
||
| /* | ||
| * The password's raw entropy value, in bits. | ||
| */ | ||
| double entropy() const | ||
| { | ||
| return m_entropy; | ||
| } | ||
|
|
||
| private: | ||
| int m_score = 0; | ||
| double m_entropy = 0.0; | ||
| QStringList m_scoreReasons; | ||
| QStringList m_scoreDetails; | ||
| }; | ||
|
|
||
| /** | ||
| * Password health check for all entries of a database. | ||
| * | ||
| * @see PasswordHealth | ||
| */ | ||
| class HealthChecker | ||
| { | ||
| public: | ||
| explicit HealthChecker(QSharedPointer<Database>); | ||
|
|
||
| // Get the health status of an entry in the database | ||
| QSharedPointer<PasswordHealth> evaluate(const Entry* entry) const; | ||
|
|
||
| private: | ||
| // To determine password re-use: first = password, second = entries that use it | ||
| QHash<QString, QStringList> m_reuse; | ||
| }; | ||
|
|
||
| #endif // KEEPASSX_PASSWORDHEALTH_H | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.