vote up 1 vote down star

I'm looking for an implementation of a password retrieval procedure using the Acegi plugin for Grails...Google is failing me...

flag

70% accept rate

2 Answers

vote up 1 vote down

IMHO this is currently not part of the Acegi plugin. I've added a forgotPassword action to the LoginController:

    def forgotPassword = {
    if (params.username) {
        User user = User.findByUsername(params.username)
        if (user) {
            def password = randomService.generateRandomString(8)
            user.passwd = authenticateService.encodePassword(password)
            if (!user.save(flush:true)) {
                user.errors.each {
                    log.error "err $it"
                }
                flash.message = message(code: "LoginController.msg.forgot.error")
            } else {
                sendMail {
                    to user.username
                    subject message(code:"LoginController.mail.forgot.subject" )
                    body(view:"forgotPasswordEmail", model: [person:user, password:password])
                }
                flash.message = message(code:"LoginController.msg.forgot", args:[user.username] )
            }
        } else {
            flash.message = message(code:"LoginController.msg.forgot.unknown", args:[params.username])
        }
    }
}

The code above uses the Grails mail plugin.

link|flag
2  
This is a good starting implementation. One potential problem with it is that it automatically resets the password, even if someone else requested it, so there's the potential for a malicious user to continually hit "reset password" and change the user's password without them actually wanting it changed (though they'd still get the e-mail). We did something like this, but instead had a table that held one time use tokens with a short time to live that are e-mailed to reset a password. If the token isn't used, the password is unchanged. Only one token in the table per user maximum. – Ted Naleid Oct 31 at 17:40
Totally agreed. Another option would be a kind of security question that man websites e.g. "What's your mother's maiden name?". Only if the question is answered correctly, password will be reset. Maybe it would made sense, to factor out those account handling functions "recover password", "recover login name", "delete account" in a seperate plugin that depends on the acegi plugin. – Stefan Nov 1 at 17:08
vote up 1 vote down

Google is failing you because there isn't one. It's really not possible to reverse the hashed password (without brute force cracking and rainbow tables), and if it were, that'd mean that your system was not secure.

The common pattern is to e-mail the user that forgot their password with a one time use token that they can then use to reset the password to whatever they want to. This isn't built into the framework, but it's not too hard to do manually (I'd suggest using the grails mail plugin).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.