Why would you do this? You should never be storing the password in more than one database.
I think you seriously need to re-think the design of your app.
If you want to retrieve the hashed password. You need to call the database directly.
db.getObjectField('user:' + confirmObj.uid, 'password', function (err, password) {
// Now you have the hashed password.
})