Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)VO
voldern @lemmy.ml
Posts 0
Comments 1
PSA: Many Lemmy instances are currently experiencing massive automated sign-ups (bots)! If you run an instance with open sign-ups, please read!
  • Thank you for proactively contacting me regarding this @[email protected]. I've had this issue on my https://feddi.no instance, but I have added a captcha and registration applications now. Hopefully it will alleviate some of the problem.

    All of the bots accounts seems to have a number in their email so I manually looked through the list of users in email_verification that contained numbers in the email to look for false positives:

    select * from email_verification where email ~ '[0-9]+';

    before running

    delete from local_user where id in (select local_user_id from email_verification);

    to delete the users.

    By suggestion from @[email protected] I updated site_aggregates to reflect the new users count on the instance:

    UPDATE site_aggregates SET users = (SELECT count(*) FROM local_user) WHERE site_id = 1;.