123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class AuthCryptModule extends AuthenticationModule
- {
- const MODULE_VERSION = '2.0.0';
- protected $hash = '$6$';
- protected $statusnet = true;
- protected $overwrite = true;
- protected $argon = false;
- public $provider_name = 'password_hash';
-
- function checkPassword($username, $password)
- {
- $username = Nickname::normalize($username);
- $user = User::getKV('nickname', $username);
- if (!($user instanceof User)) {
- return false;
- }
-
- if ($user->password === crypt($password, $user->password)) {
-
- if ($this->overwrite) {
- $this->changePassword($user->nickname, null, $password);
- }
- return $user;
- }
-
- if ($this->statusnet && $user->password === md5($password . $user->id)) {
-
- if ($this->overwrite) {
- $this->changePassword($user->nickname, null, $password);
- }
- return $user;
- }
-
- if (password_verify($password, $user->password)) {
- return $user;
- }
- return false;
- }
- protected function cryptSalt($len=CRYPT_SALT_LENGTH)
- {
- $chars = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
- $salt = '';
- for ($i=0; $i<$len; $i++) {
- $salt .= $chars[mt_rand(0, strlen($chars)-1)];
- }
- return $salt;
- }
-
- function changePassword($username, $oldpassword, $newpassword)
- {
- $username = Nickname::normalize($username);
- if($this->overwrite == false) {
- return false;
- }
- $user = User::getKV('nickname', $username);
- if (empty($user)) {
- return false;
- }
- $original = clone($user);
- $user->password = $this->hashPassword($newpassword, $user->getProfile());
- return (true === $user->validate() && $user->update($original));
- }
- public function hashPassword($password, Profile $profile=null)
- {
- $algorithm = PASSWORD_DEFAULT;
- $options = ['cost' => 12];
- if($this->argon == true && version_compare(PHP_VERSION, '7.2.0') == 1) {
- $algorithm = PASSWORD_ARGON2I;
- $options = [
- 'memory_cost' => PASSWORD_ARGON2_DEFAULT_MEMORY_COST,
- 'time_cost' => PASSWORD_ARGON2_DEFAULT_TIME_COST,
- 'threads' => PASSWORD_ARGON2_DEFAULT_THREADS
- ];
- }
-
-
-
- return password_hash($password, $algorithm, $options);
- }
-
- public function onStartChangePassword(Profile $target, $oldpassword, $newpassword)
- {
- if (!$this->checkPassword($target->getNickname(), $oldpassword)) {
-
- if (!$this->overwrite || !common_check_user($target->getNickname(), $oldpassword)) {
-
- return !$this->authoritative;
- }
-
- }
- $changed = $this->changePassword($target->getNickname(), $oldpassword, $newpassword);
- return (!$changed && empty($this->authoritative));
- }
- public function onStartCheckPassword($nickname, $password, &$authenticatedUser)
- {
- $authenticatedUser = $this->checkPassword($nickname, $password);
-
- return (!($authenticatedUser instanceof User) && empty($this->authoritative));
- }
- public function onStartHashPassword(&$hashed, $password, Profile $profile=null)
- {
- $hashed = $this->hashPassword($password, $profile);
- return false;
- }
- public function onCheckSchema()
- {
-
- return true;
- }
- public function onUserDeleteRelated($user, &$tables)
- {
-
- return true;
- }
- public function onModuleVersion(array &$versions): bool
- {
- $versions[] = array('name' => 'AuthCrypt',
- 'version' => self::MODULE_VERSION,
- 'author' => 'Mikael Nordfeldth',
- 'homepage' => GNUSOCIAL_ENGINE_REPO_URL . 'tree/master/plugins/AuthCrypt',
- 'rawdescription' =>
-
- _m('Authentication and password hashing with crypt()'));
- return true;
- }
- }
|