Ban the spammers...

Show off your completed projects, announce your hacking progress, or discuss upcoming events.

Moderator:Moderators

User avatar
nitro2k01
Posts:651
Joined:Tue Dec 19, 2006 12:41 pm
Ban the spammers...

Post by nitro2k01 » Mon Nov 02, 2009 10:21 am

I've occasionally said it before and I'm saying it again. Ban the spammers. It's not unusual to see the same spammer come back and posr 3-4 more times. You're obviously aware of these people since you've deleted or (I would guess) moved their posts to a secret subforum. And yet you don't ban them.
Set up 1-2 of the active moderators that you trust that and give them ban rights. It's not a really big deal obviously, but it's one of those things that it would be so easy to do right.
My blog
ASM Retro <- Gameboy Classic Backlight

Being the sadistic bastard I am, I have covered Frog's left eye with a Santa hat.

Last edited by nitro2k01 tomorrow, 1:48 pm; edited 1 time in total

User avatar
Squidlekins
Posts:73
Joined:Mon May 18, 2009 11:44 am
Location:OU

Re: Ban the spammers...

Post by Squidlekins » Mon Nov 02, 2009 11:07 am

Thank you sir. I share your sentiment.
The best Screen name is one that has no Google matches

User avatar
Black Six
Moderator
Posts:1991
Joined:Sun Apr 04, 2004 4:34 pm
360 GamerTag:Black 5ix
Location:MD
Contact:

Re: Ban the spammers...

Post by Black Six » Mon Nov 02, 2009 9:20 pm

nitro2k01 wrote:Set up 1-2 of the active moderators that you trust that and give them ban rights.
If it were only that simple. Only Administrators can ban members - we can't give individuals the ability to ban people and nothing else. At this point in time the staff has not deemed it necessary to promote any more admins. The accounts do get banned eventually, but sometimes it can take a week or so. I know it's a pain (more for me than you, since I have to go around deleting posts and topics) but we all have to deal with it while the staff works on a way to prevent them from registering.
"It's not that life's so short, it's just that you're dead for so long." -Anonymous
Threads Closerized: Lost Track, Whoops

User avatar
hailrazer
Portablizer Extraordinaire
Posts:2764
Joined:Mon Jul 10, 2006 8:57 pm
Location:Georgia Sweet Georgia

Re: Ban the spammers...

Post by hailrazer » Mon Nov 02, 2009 9:27 pm

That's odd. I moderate on several sites and as Mod I can ban people from posting. Not IP ban only admin can do that. But I can suspend their posting privileges indefinitely. :?:
My Portable Systems:
Image
-----Genimini---------Darth64---------Dreamtrooper--------Ncube---------Kamikazi64---N64Boy Advance

User avatar
bicostp
Moderator
Posts:10491
Joined:Mon Mar 07, 2005 5:47 pm
Steam ID:bicostp
Location:Spamalot
Contact:

Re: Ban the spammers...

Post by bicostp » Mon Nov 02, 2009 11:43 pm

We're working on getting a better captcha systemup and running, so they won't even be able to get in in the first place.

Seems like most spambots do a 5-10 post drive-by and never come back. We have a 'trash can' forum we move all the spam threads into, for later account deletion. (The forum's hidden so Google doesn't index it, and because it's just a bunch of ads for knockoff Viagra and handbags. Why do they think we want handbags anyway, that's my question...) It's kind of pointless to ban them, since we're deleting all their posts anyway and they usually don't come back. (Plus it clutters up the banlist.) Sometimes I'll ban a repeat domain name (things like spamchongsoft.web), but usually they seem to mostly sign up with [random string]@gmail accounts. :facepalm:

User avatar
nitro2k01
Posts:651
Joined:Tue Dec 19, 2006 12:41 pm

Re: Ban the spammers...

Post by nitro2k01 » Tue Nov 03, 2009 5:59 am

Black Six wrote:
nitro2k01 wrote:Set up 1-2 of the active moderators that you trust that and give them ban rights.
If it were only that simple. Only Administrators can ban members - we can't give individuals the ability to ban people and nothing else. At this point in time the staff has not deemed it necessary to promote any more admins.
I'm gonna go out on a limb and says it should be possible to do if you set up a custom user group. But don't take my word for it, I'll set up a phpBB instance on my own to investigate it.
Black Six wrote:The accounts do get banned eventually, but sometimes it can take a week or so. I know it's a pain (more for me than you, since I have to go around deleting posts and topics) but we all have to deal with it while the staff works on a way to prevent them from registering.
bicostp wrote:We're working on getting a better captcha systemup and running, so they won't even be able to get in in the first place.
Let me share some advice from my experience as an administrator on the site 8bitcollective.
1) CAPTCHA's suck. The good spam programs can handle even moderately hard CAPTCHA's without problem. What I did instead was to add a small piece of Javascript to the registration form, that I had had a year on my blog comments with great success:

Code: Select all

<script type="text/javascript">
cuicnd="wri";lc=[5, 'nput type="hidd', "\" value=\"malcolm\" ", 'en" name="antibott'];

eval('doc'+'ument')
[cuicnd+"te"]
("<i"+lc[1]+lc[3]+(--lc[0])+lc[2]+' />')
;z=document.getElementById('requsername');
z.name='_'+lc[lc[0]-3].substring(0,3)+z.id;
</script>
What the hell is that? It's a piece of very obfuscated Javascript code that adds a hidden form element as well as rename one of the fields. (Of course there has two be a corresponding check on the server side for this to work) So far it has proven very effective in singling out bots, because the one thing that really separates bots from browsers is the lack of ability to run Javascript code. If you're interested I can look into making a phpBB3 plugin that does the same thing.
That piece of code has proven very effective against all but human spammers... Which brings me to the second nugget of wisdom:
We've had a number of, what I assume are, manual spammers who have been spamming about chinese MP3 players and iPod software. The solution to that was to ban a larger IP subnet. Granted, this take a little more effort, but has a payoff once you've banned enough subnets. Let's say two spammers have posted from IP's 1.2.3.4 and 1.2.3.5. Then it might be worth considering banning 1.2.3.* or even 1.2.*.*. What you need to at that point however is to investigate whether there are any users from the larger subnet. (1.2.*.*) I don't know if phpBB allows you to search for users and posts with IP masks like that. I'm too lazy to write a PHP helper script, so I've been doing it manually at the MySQL prompt, something like:

Code: Select all

SELECT username, registration_ip FROM users WHERE registration_ip LIKE '1.2.%';
The number of users, and the number of users who are spammers in that list, gives a good estimation on whether it's ok to ban that subnet. (% is a wildcard for the LIKE operator in SQL) Then the same for '1.2.3.%'. And of course do this for both the user and post list.
After doing this consistently for 6 months or so we don't get spam from the iPod guys any more.

Another thing that might work is to have an auto-ban or autowarn for specific terms like "wow gold" or "replica handbags" which probably won't come up very often anyway.
bicostp wrote:Why do they think we want handbags anyway, that's my question...
What's that? Let me get my magnifying glass...
bicostp wrote:Why do they think we want handbags anyway, that's my question...
That's better. ;)
They don't. (Generally speaking) They want to gain PageRank by getting links from highly ranked pages. That way, they're hoping that their page will be in the top when someone googles for "replica handbags". So far they're apparently successful, when I google for just that, I see sites that I've seen linked from BH by spammers.
That's why they sometimes try to conceal their links, to avoid being caught. For example, the WoW gold spammer that I've been reporting for a while posts some mumbo-jumbo, followed by spam links in a small type. I also remember another spammer who came here and posted a Wikipedia article about some chemical element, with 1-2 links in the middle of the text. There were even a couple of people who didn't even understand that it was a spam and just said "interesting...".
My blog
ASM Retro <- Gameboy Classic Backlight

Being the sadistic bastard I am, I have covered Frog's left eye with a Santa hat.

Last edited by nitro2k01 tomorrow, 1:48 pm; edited 1 time in total

User avatar
J.D
Posts:330
Joined:Wed May 06, 2009 3:43 pm
Location:Astoria, OR, US

Re: Ban the spammers...

Post by J.D » Tue Nov 03, 2009 8:25 am

nitro2k01 wrote:
Black Six wrote:
nitro2k01 wrote:Set up 1-2 of the active moderators that you trust that and give them ban rights.
If it were only that simple. Only Administrators can ban members - we can't give individuals the ability to ban people and nothing else. At this point in time the staff has not deemed it necessary to promote any more admins.
I'm gonna go out on a limb and says it should be possible to do if you set up a custom user group. But don't take my word for it, I'll set up a phpBB instance on my own to investigate it.
Yeah, that.
Last edited by nitro2k01 tomorrow, 1:48 pm; edited 1 time in total
WTF?

User avatar
nitro2k01
Posts:651
Joined:Tue Dec 19, 2006 12:41 pm

Re: Ban the spammers...

Post by nitro2k01 » Tue Nov 03, 2009 11:22 am

J.D wrote:
Last edited by nitro2k01 tomorrow, 1:48 pm; edited 1 time in total
WTF?
Every once in a while someone comes along and falls for it. Image :lol: :facepalm:

Image
My blog
ASM Retro <- Gameboy Classic Backlight

Being the sadistic bastard I am, I have covered Frog's left eye with a Santa hat.

Last edited by nitro2k01 tomorrow, 1:48 pm; edited 1 time in total

User avatar
Mario
Posts:1383
Joined:Mon Mar 05, 2007 7:20 pm
Location:Sunny California

Re: Ban the spammers...

Post by Mario » Sat Nov 07, 2009 12:35 pm

bicostp wrote:We're working on getting a better captcha systemup and running, so they won't even be able to get in in the first place.

Seems like most spambots do a 5-10 post drive-by and never come back. We have a 'trash can' forum we move all the spam threads into, for later account deletion. (The forum's hidden so Google doesn't index it, and because it's just a bunch of ads for knockoff Viagra and handbags. Why do they think we want handbags anyway, that's my question...) It's kind of pointless to ban them, since we're deleting all their posts anyway and they usually don't come back. (Plus it clutters up the banlist.) Sometimes I'll ban a repeat domain name (things like spamchongsoft.web), but usually they seem to mostly sign up with [random string]@gmail accounts. :facepalm:
For a captcha, try what we did!
http://forums.modretro.com/ucp.php?mode=register" onclick="window.open(this.href);return false;

Bacon! :mrgreen:
Image

User avatar
samjc3
Posts:1086
Joined:Sun Feb 15, 2009 8:05 pm
Steam ID:samjc3
Location:burning and pillaging!!

Re: Ban the spammers...

Post by samjc3 » Sat Nov 07, 2009 1:23 pm

Mario wrote:
bicostp wrote:We're working on getting a better captcha systemup and running, so they won't even be able to get in in the first place.

Seems like most spambots do a 5-10 post drive-by and never come back. We have a 'trash can' forum we move all the spam threads into, for later account deletion. (The forum's hidden so Google doesn't index it, and because it's just a bunch of ads for knockoff Viagra and handbags. Why do they think we want handbags anyway, that's my question...) It's kind of pointless to ban them, since we're deleting all their posts anyway and they usually don't come back. (Plus it clutters up the banlist.) Sometimes I'll ban a repeat domain name (things like spamchongsoft.web), but usually they seem to mostly sign up with [random string]@gmail accounts. :facepalm:
For a captcha, try what we did!
http://forums.modretro.com/ucp.php?mode=register" onclick="window.open(this.href);return false;

Bacon! :mrgreen:
hey, thats actually a great idea. and, come to think of it, ive never seen a spambot on MR. :mrgreen:
AfroLH wrote:
HotDog-Cart wrote: Also, the codename stuff adds a little bit of sexyness, in my eyes.
Yeah well Alcohol adds a little bit of sexyness in my eyes, but I dont drink it all the time. :wink:
SpongeBuell wrote:As proof, I offer this picture of a monkey on my head.

User avatar
Hobbes
Posts:40
Joined:Wed Nov 04, 2009 8:39 pm
Location:Where else? Nevada.
Contact:

Re: Ban the spammers...

Post by Hobbes » Sun Nov 08, 2009 12:46 am

They still make it, but only the really smart ones :wink:
Image

User avatar
Mario
Posts:1383
Joined:Mon Mar 05, 2007 7:20 pm
Location:Sunny California

Re: Ban the spammers...

Post by Mario » Sun Nov 08, 2009 12:46 pm

Hobbes wrote:They still make it, but only the really smart ones :wink:
And then they are promptly deleted. :wink:
Image

User avatar
Tchay
Posts:643
Joined:Sun Apr 12, 2009 6:42 pm
Location:Hollywood

Re: Ban the spammers...

Post by Tchay » Mon Nov 09, 2009 5:02 pm

Mario wrote:
bicostp wrote:We're working on getting a better captcha systemup and running, so they won't even be able to get in in the first place.

Seems like most spambots do a 5-10 post drive-by and never come back. We have a 'trash can' forum we move all the spam threads into, for later account deletion. (The forum's hidden so Google doesn't index it, and because it's just a bunch of ads for knockoff Viagra and handbags. Why do they think we want handbags anyway, that's my question...) It's kind of pointless to ban them, since we're deleting all their posts anyway and they usually don't come back. (Plus it clutters up the banlist.) Sometimes I'll ban a repeat domain name (things like spamchongsoft.web), but usually they seem to mostly sign up with [random string]@gmail accounts. :facepalm:
For a captcha, try what we did!
http://forums.modretro.com/ucp.php?mode=register" onclick="window.open(this.href);return false;

Bacon! :mrgreen:
Yeah! I just got on that site and thought that was a great idea.

@Hobbes, you still here eh?
Image Image

nevermind1534
Senior Member
Posts:1977
Joined:Fri Feb 06, 2009 1:36 pm
Steam ID:nevermind1534
Location:Detroit, MI
Contact:

Re: Ban the spammers...

Post by nevermind1534 » Mon Nov 09, 2009 6:38 pm

On Your PC Forums, we have a plugin that blocks known spammers from registering (it's blocked a sh*tload of them). I don't think they have a PHPBB3 plugin, though.
Kyo wrote:"does anyone here know how to fly a plane?"

"STAND BACK EVERYBODY, I HAVE A FAKE ID"

User avatar
MasterPrime
Posts:88
Joined:Sun Feb 17, 2008 9:53 pm

Re: Ban the spammers...

Post by MasterPrime » Thu Nov 12, 2009 7:42 am

agreed. like that bicostp guy. he's always spamming useful information.
Image

Post Reply