File manager - Edit - /home/c14075/dragmet-ural.ru/www/bitrix/modules/main/lib/security/weakpassword.php
Back
<?php /** * Bitrix Framework * @package bitrix * @subpackage main * @copyright 2001-2021 Bitrix */ namespace Bitrix\Main\Security; use Bitrix\Main\IO; class WeakPassword { /** * Creates a set of indexed files from one source file. * * @param string $dataFile The absolute path to the source file. * @param string $path The absolute path to the folder which contains the indexed files. If the folder doesn't exist it'll be created. * @return bool */ public static function createIndex(string $dataFile, string $path): bool { $file = new IO\File($dataFile); $passwords = $file->getContents(); $passwords = str_replace(["\r\n", "\r"], "\n", $passwords); $passwords = explode("\n", $passwords); $hashedPasswords = []; foreach ($passwords as $password) { $hash = md5($password); $name = $hash[0] . $hash[1]; // 256 possible keys $hashedPasswords[$name][] = (string)$password; } unset($passwords); foreach ($hashedPasswords as $name => $value) { // we need the first and the last \n as a search pattern separator $content = "\n" . implode("\n", $value) . "\n"; $indexFile = new IO\File($path . '/' . $name . 'txt'); if ($indexFile->putContents($content) === false) { return false; } } return true; } /** * Checks if a password exists in the database. * * @param string $password The password. * @param string $path The absolute path to the folder which contains the indexed files. * @return bool */ public static function exists(string $password, string $path): bool { $hash = md5($password); $name = $hash[0] . $hash[1]; $indexFile = new IO\File($path . '/' . $name . 'txt'); if (!$indexFile->isExists()) { return false; } $passwords = $indexFile->getContents(); return (strpos($passwords, "\n" . $password . "\n") !== false); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.27 |
proxy
|
phpinfo
|
Settings