Help ! Spammers have found my PHPBB forum !
November 20, 2006 5:19 AM
Subscribe
I'm running a PhPBB forum. Spammers have found it. Mysterious strangers selling vigorous blue pills popped up from nowhere.
Now I need to build something that will prevent spammers from polluting it. Is there a silver bullet that prevents all spammers from ever posting on PHPBB forums ? (I know, but I'm an eternal optimistic).
Any antispam mods that has been successfullyt tested someone would like to recommend ?
Thanks in adavance.
posted by Baud to computers & internet (8 comments total)
2 users marked this as a favorite
This either means they have a) broken the CAPTCHA and can "read" the image or b) are paying an army of slave laborers to sit and register the CAPTCHA on a bunch of bulletin boards so they can spam them.
My ad hoc solution: Once every 3 days, I log into the database and do a
select user_id, user_website from phpbb_users order by user_id
.. this produces a list of all the user_ids and their registered websites. Nine times out of then, the spammer will register a site as well, probably with the hopes of link-spamming, and it'll be easy to ID: http://pornspam-host-teen-sex.pills-4-U.ru, for example.
I do a quick visual check for anyone who might have a legit site in there (don't want to nuke any valid users) and then run something like
delete from phpbb_users where user_id > NNNN and user_website != ""
... where NNN is the last known good user_id. This purges their accounts out.
posted by bhance at 5:50 AM on November 20, 2006