@erik-viklander these are directly from the password strength calculation library zxcvbn which NodeBB uses to enforce password strength.
result.score # Integer from 0-4 (useful for implementing a strength bar) 0 # too guessable: risky password. (guesses < 10^3) 1 # very guessable: protection from throttled online attacks. (guesses < 10^6) 2 # somewhat guessable: protection from unthrottled online attacks. (guesses < 10^8) 3 # safely unguessable: moderate protection from offline slow-hash scenario. (guesses < 10^10) 4 # very unguessable: strong protection from offline slow-hash scenario. (guesses >= 10^10)Could not find admin login password
-
Hi,
I had installed nodebb newly on ubuntu 14.04 along with mongodb.
During the setup process no option was given to setup admin user/login. But, it looks to have created an admin with username "admin" but the password is unknown.
Could you please help how I can get the admin password?Thanks
-
@smogulur the security of NodeBB makes it impossible to retrieve a password. This is by design. If you haven't gotten too far as far as installation goes, you should drop the database you chose and restart.