Password Lengths

If you want to do an audit of users' password lengths, then go to Settings → Database → Queries and run this query:

SELECT username,LENGTH(DECODE(SUBSTRING(datavalue FROM 2),'base64')) FROM users.usersettings INNER JOIN users.users USING(usernumber) WHERE dataname='mainpassword';