docker-firefox-syncserver
docker-firefox-syncserver copied to clipboard
[Question] How to check how many/what accounts are linked?
I accidentally left FF_SYNCSERVER_ALLOW_NEW_USERS: 'true' for a couple of months. Strangers could have used it to sync with my server. How can I check what accounts are currently linked to my server?
if you log into your database (regardless of what database it is) you can check what's under the users table. For example, in Postgresql you can do this to connect to your database:
pgsql --username firefox-sync --password
and then, after authenticating:
\c firefox_sync;
SELECT * FROM users;
(assuming the name of your database is firefox_sync and your username is firefox-sync, of course).