Web Develop Forum: Getting loads of spammers from a certain site - Web Develop Forum

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Getting loads of spammers from a certain site what can I do to keep the spammers away? Rate Topic: ***** 1 Votes

#1 User is offline   Simon Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 30
  • Joined: 05-March 09
  • Gender:Male
  • Location:Sweden

Post icon  Posted 07 March 2009 - 01:41 PM

I have recently gotten loads of spammers on my forum. They are not spambots so they have no problems getting through my spam protection on registration. I have checked out my site traffic and they all seem to come from a spam site, a so called "work from home" site: typegetrich[dot]com

What can I do to stop them from spamming my forum? All I do at the moment is deleting their posts and the spam accounts. But they keep coming back!

I appreciate any help I can get. Thanks!
0

#2 User is offline   Sam Granger Icon

  • Administrator
  • PipPipPip
  • Group: Root Admin
  • Posts: 431
  • Joined: 22-October 08
  • Gender:Male

Posted 07 March 2009 - 05:47 PM

The only thing I can think of is blocking the posters IP's.
0

#3 User is offline   Diffraction Icon

  • Advanced Member
  • Icon
  • Group: Moderator
  • Posts: 279
  • Joined: 26-January 09
  • Gender:Male
  • Location:USA
  • Interests:Web Development, Reading, Writing, Computers in general...
  • Your specialities (detailed)::HTML 5
    CSS 3
    jQuery

Posted 07 March 2009 - 06:18 PM

Try blocking people from that domain in the .htaccess?
Want to report something to a moderator? Use the 'report' button located on every post.
0

#4 User is offline   Simon Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 30
  • Joined: 05-March 09
  • Gender:Male
  • Location:Sweden

Posted 07 March 2009 - 07:10 PM

QUOTE (Sam Granger @ Mar 7 2009, 06:47 PM) <{POST_SNAPBACK}>
The only thing I can think of is blocking the posters IP's.

Good idea. The problem is its different ips every time.

QUOTE (Meshach @ Mar 7 2009, 07:18 PM) <{POST_SNAPBACK}>
Try blocking people from that domain in the .htaccess?

I can do that? How? smile.gif
0

#5 User is offline   Sam Granger Icon

  • Administrator
  • PipPipPip
  • Group: Root Admin
  • Posts: 431
  • Joined: 22-October 08
  • Gender:Male

Posted 07 March 2009 - 07:40 PM

QUOTE (Meshach @ Mar 7 2009, 07:18 PM) <{POST_SNAPBACK}>
Try blocking people from that domain in the .htaccess?

Great suggestion! Didn't think about that!

Right, what you do is create a file named .htaccess and place it in your root directory (public_html, www or whatever) - basically where your homepage index file is.

the htaccess file should contain:

CODE
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?typegetrich.com.*$ [NC]
RewriteRule .* http://www.disney.com [R,L]


If you wonder what the disney thing is, I'm just sending them to disney land smile.gif. tongue.gif
0

#6 User is offline   Sam Granger Icon

  • Administrator
  • PipPipPip
  • Group: Root Admin
  • Posts: 431
  • Joined: 22-October 08
  • Gender:Male

Posted 07 March 2009 - 08:00 PM

Will actually build you a system I think, that blocks all IP's directly that come to your site from typegetrich.
0

#7 User is offline   Salathe Icon

  • Advanced Member
  • Icon
  • Group: Moderator
  • Posts: 138
  • Joined: 15-January 09
  • Gender:Male
  • Location:Scotland

Posted 07 March 2009 - 08:22 PM

You'd have to be a pretty dumb spammer to have your referrer being the url that you're trying to spam!

There are some really nice plugins for forums. vBulletin has MonkeyStop and I'm sure IPB would have something similar.
salathe@php.net
0

#8 User is offline   Sam Granger Icon

  • Administrator
  • PipPipPip
  • Group: Root Admin
  • Posts: 431
  • Joined: 22-October 08
  • Gender:Male

Posted 07 March 2009 - 08:43 PM

QUOTE (Peter @ Mar 7 2009, 09:22 PM) <{POST_SNAPBACK}>
You'd have to be a pretty dumb spammer to have your referrer being the url that you're trying to spam!

There are some really nice plugins for forums. vBulletin has MonkeyStop and I'm sure IPB would have something similar.

Didn't know plugins like that existed. Cool!
0

#9 User is offline   Simon Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 30
  • Joined: 05-March 09
  • Gender:Male
  • Location:Sweden

Posted 07 March 2009 - 08:47 PM

QUOTE (Sam Granger @ Mar 7 2009, 08:40 PM) <{POST_SNAPBACK}>
Great suggestion! Didn't think about that!

Right, what you do is create a file named .htaccess and place it in your root directory (public_html, www or whatever) - basically where your homepage index file is.

the htaccess file should contain:

CODE
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?typegetrich.com.*$ [NC]
RewriteRule .* http://www.disney.com [R,L]


If you wonder what the disney thing is, I'm just sending them to disney land smile.gif. tongue.gif

Thank you so much! smile.gif

QUOTE (Peter @ Mar 7 2009, 09:22 PM) <{POST_SNAPBACK}>
You'd have to be a pretty dumb spammer to have your referrer being the url that you're trying to spam!

There are some really nice plugins for forums. vBulletin has MonkeyStop and I'm sure IPB would have something similar.

Ahh yes. If I had a larger board with a bit more traffic it would have been harder to find the source of the spam. Sometimes its good to be small! wink.gif
0

#10 User is offline   Diffraction Icon

  • Advanced Member
  • Icon
  • Group: Moderator
  • Posts: 279
  • Joined: 26-January 09
  • Gender:Male
  • Location:USA
  • Interests:Web Development, Reading, Writing, Computers in general...
  • Your specialities (detailed)::HTML 5
    CSS 3
    jQuery

Posted 08 March 2009 - 06:18 PM

QUOTE (Simon @ Mar 7 2009, 01:10 PM) <{POST_SNAPBACK}>
Good idea. The problem is its different ips every time.


I can do that? How? smile.gif


Mr. Granger's tutorial is impressive.

laugh.gif
Want to report something to a moderator? Use the 'report' button located on every post.
0

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users