Hi there, Been running my own little Lemmy instance basically to see how it runs with federation and stuff like that. I have had open (email validation) for the odd person or 2 that might want to use it.
Early this morning (my time 4:43am) I had about 15 new users all at the exact same time registering as users with same structure names (random words) followed by 4 numbers. Being all within 1 minute of each other they are obvious bots.
Going through the UI I have not been able to find a way to remove them. I have since changed my registration policy to make the person fill in an application, captcha, email validation etc. to help stop polluting the ecosystem with bots.
Any help would be appreciated. I am running it all under docker
the only mass solution i found to this was that i installed pgadmin, logged into the db, and manually removed all the bot accounts from
local_user
. you should also remove them from theperson
table as well (you can easily find them if you doSELECT * FROM person WHERE local = true ORDER BY published DESC
in the query tool), that way they don’t show up in your instance stats, but removing them fromlocal_user
would be enough to stop them from logging in.thanks I will try this.