Code Monkey home page Code Monkey logo

Comments (2)

REJack avatar REJack commented on May 18, 2024

No way Tank_auth use "phpass" to generate the hashes.
Its not recalculateable, you can just brute-force the hashes and generate then new hashes from the brute-forced hashes.
Or the easy and right way
Copy the name and email adress with empty 'pass' and 'verification_code' fields and the use the lil' code it would send new passwords to all users who has no password after migration

public function complete_migrate(){
    foreach($this->aauth->list_users() as $user){
        $user = get_object_vars($user);
        if($user['verification_code'] == '' && $user['pass'] == ''){
            $this->aauth->reset_password($user['id'],''); 
        }
    }
}

If use the Aauth-Lib then fix in Line 383 'alphanum' to 'alnum' then the users go a password.
It got be fixed with the next merge i think.

from codeigniter-aauth.

emreakay avatar emreakay commented on May 18, 2024

@REJack is right. i have take a look at tank_auth and see that the poswords fields in database cannot be decrypted. Thus it's better to use @REJack 's solution. You can reset all user paswords.

from codeigniter-aauth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.