Jump to content

ibrooda

Newbie
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Software
    IPS4
  • Version
    4.3

ibrooda's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. found it if (password_verify($providedpass, $row['members_pass_hash'])) $correct_password = true;
  2. they used to do it like this crypt('provided', '$2a$13$' . $row['members_pass_salt']); but members_pass_salt is empty and i found this if ( $this->authenticatePasswordForMember( $member, $password ) ) { /* If it's the old style, convert it to the new */ if ( $member->members_pass_salt ) { $member->setLocalPassword( $password ); $member->save(); } /* Return */ return $member; } /* If it's the old style, convert it to the new */ if ( $member->members_pass_salt ) means that if the password salt isnt empty then convert it to the new encryption type... but i cant find where its encrypted
×
×
  • Create New...