Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Registration verification can crash node process #377

Closed
johnsoftek opened this issue Jul 17, 2014 · 0 comments
Closed

Registration verification can crash node process #377

johnsoftek opened this issue Jul 17, 2014 · 0 comments

Comments

@johnsoftek
Copy link

If the user id in the verification email is tampered with and not found by User.confirm, an error causes the node process to crash:

TypeError: Cannot read property 'verificationToken' of null

Suggest change

      if(user.verificationToken === token) {

to

      if(user && user.verificationToken === token) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant