Posted 21 сентября, 20177 yr comment_136680 Доброго времени суток! Буду благодарен любой помощи по вопросу изменения шифрования, хотелось бы чтобы пароли были без соли и прочего в виде MD5(MD5(pass)) Подскажите что поменять. Я так понимаю нужно менять именно здесь /system/member/member.php public function encryptedPassword( $password ) { /* New password style introduced in 4.0 using Blowfish */ if ( mb_strlen( $this->members_pass_salt ) === 22 ) { return crypt( $password, '$2a$13$' . $this->members_pass_salt ); } /* Old encryption style using md5 */ else { return md5( md5( $this->members_pass_salt ) . md5( \IPS\Request::legacyEscape( $password ) ) ); } } Link to comment https://ipbmafia.ru/topic/18350-izmenenie-shifrovaniya-parolej-424/ Share on other sites Больше вариантов
21 сентября, 20177 yr Author comment_136682 Решение: public function encryptedPassword( $password ) { return md5( md5( $password )); } Решение: public function encryptedPassword( $password ) { return md5( md5( $password )); } Link to comment https://ipbmafia.ru/topic/18350-izmenenie-shifrovaniya-parolej-424/?&do=findComment&comment=136682 Share on other sites Больше вариантов
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.