Ghost reply notifications

Questions, comments, and suggestions about this site should go here.
jal
Member
Member
Posts: 1385
Joined: Wed Oct 31, 2007 9:09 am

Ghost reply notifications

Post by jal »

Quite often I get topic reply notifications via e-mail that link to topics that haven't been replied to in months. Osdev is the only forum I have this issue with, so what's triggering these notifications? Spam replies being deleted by moderators?


JAL
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Freenode IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Ghost reply notifications

Post by Combuster »

You nailed it :D
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
jal
Member
Member
Posts: 1385
Joined: Wed Oct 31, 2007 9:09 am

Re: Ghost reply notifications

Post by jal »

Combuster wrote:You nailed it :D


Sometimes being right is not necessarily fun :).


JAL
User avatar
neon
Member
Member
Posts: 1565
Joined: Sun Feb 18, 2007 7:28 pm
Contact:

Re: Ghost reply notifications

Post by neon »

Perhaps a forum mod to auto-lock a thread after a few months or so would solve this issue?
OS Development Series | Wiki | os | ncc
char c[2]={"\x90\xC3"};int main(){void(*f)()=(void(__cdecl*)(void))(void*)&c;f();}
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

Re: Ghost reply notifications

Post by JamesM »

It wouldn't, unfortunately - the spam gets sent to active topics only, seemingly.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Freenode IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Ghost reply notifications

Post by Combuster »

Plus, reviving relevant old threads is sometimes better than creating new ones. (although not everybody would agree on that).
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
purage
On Probation
Posts: 119
Joined: Wed Feb 11, 2009 1:04 am

Re: Ghost reply notifications

Post by purage »

Do you think they submit spam by hand?
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Freenode IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Ghost reply notifications

Post by Combuster »

Given the rumors, yes some might.
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
purage
On Probation
Posts: 119
Joined: Wed Feb 11, 2009 1:04 am

Re: Ghost reply notifications

Post by purage »

You could probably make a word database that stars out certain words, like you would with curse words, except use them on paxil, viagra, etc and just keep adding new ones as you see them. You might re-code that feature to first lower case everything, so the comparison could be more precise, so that something simple like pAxIl wont make it through. This would also break any links with those words in it. Just an ideal; something to build on.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Freenode IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Ghost reply notifications

Post by Combuster »

*me loves the custom spamfilter for his website - no captcha involved - spam-free for over 4 months*

Shame that chase showed no attempt of copying parts of that...
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
purage
On Probation
Posts: 119
Joined: Wed Feb 11, 2009 1:04 am

Re: Ghost reply notifications

Post by purage »

If your looking for a list of words, this looks promising: http://www.vaughns-1-pagers.com/interne ... d-list.htm

Found on Google using: spam words

Just hack up a quick script to parse the list and set them in the DB for you.
User avatar
chase
Site Admin
Posts: 694
Joined: Wed Oct 20, 2004 10:46 pm
Location: Texas
Contact:

Re: Ghost reply notifications

Post by chase »

Word banning doesn't work. You get to many false hits and it is to easy to get around. It only works on low volume sites and/or sites that aren't running commonly targeted software like phpBB. Word filters can work as part of a spam ranking system like SpamAssassin. I wish there was a good SpamAssassin plugin for phpBB.

I added an extra registration question so that should stop some of the bots (and the really stupid people). Used this mod: http://www.phpbb.com/mods/db/index.php? ... ib_id=3011
purage
On Probation
Posts: 119
Joined: Wed Feb 11, 2009 1:04 am

Re: Ghost reply notifications

Post by purage »

It's the same question every time and it is presented as plain text rather than a dynamically created image. lol
User avatar
chase
Site Admin
Posts: 694
Joined: Wed Oct 20, 2004 10:46 pm
Location: Texas
Contact:

Re: Ghost reply notifications

Post by chase »

purage wrote:It's the same question every time and it is presented as plain text rather than a dynamically created image. lol

What do you do you think either one of those things would acheive? Captchas have been cracked by most bots and the question just needs to be unique enough that it isn't shared across so many phpbb forums that bots add code for it.
User avatar
Troy Martin
Member
Member
Posts: 1686
Joined: Fri Apr 18, 2008 4:40 pm
Location: Langley, Vancouver, BC, Canada
Contact:

Re: Ghost reply notifications

Post by Troy Martin »

You could take it a step further and make it octal, just to make it different/harder.
Image
Image
Solar wrote:It keeps stunning me how friendly we - as a community - are towards people who start programming "their first OS" who don't even have a solid understanding of pointers, their compiler, or how a OS is structured.
I wish I could add more tex
Post Reply