docker-firefox-syncserver icon indicating copy to clipboard operation
docker-firefox-syncserver copied to clipboard

[Question] How to check how many/what accounts are linked?

Open zilexa opened this issue 4 years ago • 1 comments

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?

zilexa avatar Aug 04 '21 11:08 zilexa

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).

mmnaseri avatar Oct 23 '21 03:10 mmnaseri