You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But there are still passwords from users. It is not unlikely they use the same password for other services (like minecraft). These passwords are now easily guessable and are available to the public with their minecraft usernames. If that database is not used anymore, remove it or make it non-public for the sake of your users.
Steps to hijack your users:
Get a good look at the database (atlas.civcraft.net):
select count(*), password from users group by password order by 1;
Take one from the highest and guess that it must be a standard password
Try to re-create the password
echo -n 1337539sdfwwfWWDWFwwdfwQWFSCQqEFSAZ123456 | sha1sum
You should really use a different salt. At least now.
The text was updated successfully, but these errors were encountered: