X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcreateCommonPasswordCdb.php;h=f7e0c0fb9f463fae800e05149848c5be478e0410;hb=6c936182995f038dabf71d1b558044f425e8f3ec;hp=f13dd930ce9d5d039c7a763c79773760d673433b;hpb=57eaa2bf04ce1b48bd89c10defe4de5b7d31f047;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/createCommonPasswordCdb.php b/maintenance/createCommonPasswordCdb.php index f13dd930ce..f7e0c0fb9f 100644 --- a/maintenance/createCommonPasswordCdb.php +++ b/maintenance/createCommonPasswordCdb.php @@ -26,9 +26,11 @@ require_once __DIR__ . '/Maintenance.php'; /** * Maintenance script to create common password cdb database. * - * Meant to take a file like - * https://github.com/danielmiessler/SecLists/blob/master/Passwords/rockyou.txt?raw=true - * as input. + * Meant to take a file like those from + * https://github.com/danielmiessler/SecLists + * For example: + * https://github.com/danielmiessler/SecLists/blob/fe2b40dd84/Passwords/rockyou.txt?raw=true + * * @see serialized/commonpasswords.cdb and PasswordPolicyChecks::checkPopularPasswordBlacklist * @since 1.27 * @ingroup Maintenance @@ -109,7 +111,6 @@ class GenerateCommonPassword extends Maintenance { } catch ( \Cdb\Exception $e ) { $this->error( "Error writing cdb file: " . $e->getMessage(), 2 ); } - } }