Topic: Spam and dangerous spam

Hi guys, i have some problem with spammer.

They post lists of porn links on my forum every day...
Now, i've banned about 20 users, i've checked the "verify registrations" point but they could use temporary e-mail addresses. (in fact, if i check these e-mails with the Check EMail service, it says they're ok)

So how can i solve this dangerous problem?

Can i set a limit in the quantity of links an user can post?
Can i censor the words "porn", etc..?

2

Re: Spam and dangerous spam

Are you using any registration mods?

Re: Spam and dangerous spam

I suggest that you use the BB Spam fighter mod http://www.punres.org/files.php?pid=376
It does allow you to set a list of forbidden words, and also makes you limit the number of urls per posts. That's exactly what you're looking for smile.
I used to have a lot of spammers myself, but after I set a captchabox and this mod, the forum became cleaner.
With the captchabox, you limit the registration of bots. I hated to have bots around, even if they didn't post anything.

If you do what you've always done, you'll get what you've always gotten.

4 (edited by ADesigner 2007-10-17 10:15)

Re: Spam and dangerous spam

Thanks guys, i'll try to use spam fighter.
Where can i download the captchabox?

Re: Spam and dangerous spam

Here is the captchabox: http://www.punres.org/files.php?pid=250

If you do what you've always done, you'll get what you've always gotten.

Re: Spam and dangerous spam

Thanks a lot papillon, but i have an error with Spam Fighter: when i click on the plug-in link, it says: "unable to fetch the users list".

How can i solve?

Re: Spam and dangerous spam

I am sorry I don't know, I hope someone else can help you with this smile.
It worked fine for me when I activated the plugin from the administration pannel.

If you do what you've always done, you'll get what you've always gotten.

8 (edited by quaker 2007-10-17 13:00)

Re: Spam and dangerous spam

ADesigner, i find that by adding this to register.php right after the line with include/common.php
this seem to help alot.
open  register.php
find include/common.php line paste this after that.

Q

/***************************
   START SPAM PROTECTION
***************************/

// Address of the blocklist server
$checkspam['blocklist'] = 'sbl.spamhaus.org';

// Build the url to check (reverse DNS query). If you want to test if it works on
// your server, replace the "get_remote_address()" part with the following: '127.0.0.2'
$checkspam['Reverse DNS'] = implode( '.', array_reverse( explode( '.', get_remote_address() ) ) ) . '.' . $checkspam['blocklist'];

// Do the actual lookup. If the users IP is listed in the blocklist, we will be given just an IP back from the queried server.
// If the user is *not* listed as a spammer, the result we get back from the server will be the same string as we sent.
if( $checkspam['Reverse DNS'] != gethostbyname($checkspam['Reverse DNS']) ) {
    
    message('Unfortunately, it would appear that your current IP address is listed in one of the anti-spam databases we queried.
            Because of this, you will not be able to register a new account at this point in time. If you believe this to
            be a mistake, we urge you to read the FAQ over at <a href="http://www.spamhaus.org/faq/index.lasso">The Spamhaus Project</a>
            for more details, including actions you can take to resolve this issue.',true);
}

/****************************
   END OF SPAM PROTECTION
****************************/
My stuff or my style might sux, but atleast I'm willing to help when I can.
Don't be stupid and help ! We are the stupid one's !!!

Re: Spam and dangerous spam

@quaker:
Er... I am not having any issues with this, I think you're talking to ADesigner.

If you do what you've always done, you'll get what you've always gotten.

10

Re: Spam and dangerous spam

ops sorry about that and i fixed it...ahaha


Q

My stuff or my style might sux, but atleast I'm willing to help when I can.
Don't be stupid and help ! We are the stupid one's !!!