diff options
author | Fabrizio Steiner <fabrizio.steiner@gmail.com> | 2017-05-07 23:10:02 +0200 |
---|---|---|
committer | Fabrizio Steiner <fabrizio.steiner@gmail.com> | 2017-05-08 14:04:40 +0200 |
commit | f2a2b34e4639e88f8d948a388a51f010212b42a3 (patch) | |
tree | 954643c654e79741bda826d9b29374f8fae0e5c9 /settings | |
parent | 59ee22101f228d9dec8c3930da0b12b0766a479a (diff) | |
download | nextcloud-server-f2a2b34e4639e88f8d948a388a51f010212b42a3.tar.gz nextcloud-server-f2a2b34e4639e88f8d948a388a51f010212b42a3.zip |
Increase device password entropy. Use lower- and upper-case characters and digits, but exclude ambiguous characters. The number of digits has also been increased to 25.
Signed-off-by: Fabrizio Steiner <fabrizio.steiner@gmail.com>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/Controller/AuthSettingsController.php | 8 | ||||
-rw-r--r-- | settings/css/settings.css | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/settings/Controller/AuthSettingsController.php b/settings/Controller/AuthSettingsController.php index 57192e119a9..7bb8a6654e6 100644 --- a/settings/Controller/AuthSettingsController.php +++ b/settings/Controller/AuthSettingsController.php @@ -154,16 +154,16 @@ class AuthSettingsController extends Controller { } /** - * Return a 20 digit device password + * Return a 25 digit device password * - * Example: ABCDE-FGHIJ-KLMNO-PQRST + * Example: AbCdE-fGhIj-KlMnO-pQrSt-12345 * * @return string */ private function generateRandomDeviceToken() { $groups = []; - for ($i = 0; $i < 4; $i++) { - $groups[] = $this->random->generate(5, implode('', range('A', 'Z'))); + for ($i = 0; $i < 5; $i++) { + $groups[] = $this->random->generate(5, ISecureRandom::CHAR_HUMAN_READABLE); } return implode('-', $groups); } diff --git a/settings/css/settings.css b/settings/css/settings.css index 0777f7e4cf4..acd8ce8e47c 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -343,7 +343,7 @@ table.nostyle td { padding: 0.2em 0; } #new-app-login-name, #new-app-password { - width: 186px; + width: 245px; font-family: monospace; background-color: lightyellow; } |