Ghost reply notifications
Ghost reply notifications
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
JAL
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: Ghost reply notifications
You nailed it
Re: Ghost reply notifications
Sometimes being right is not necessarily fun :).Combuster wrote:You nailed it :D
JAL
Re: Ghost reply notifications
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();}
char c[2]={"\x90\xC3"};int main(){void(*f)()=(void(__cdecl*)(void))(void*)&c;f();}
Re: Ghost reply notifications
It wouldn't, unfortunately - the spam gets sent to active topics only, seemingly.
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: Ghost reply notifications
Plus, reviving relevant old threads is sometimes better than creating new ones. (although not everybody would agree on that).
Re: Ghost reply notifications
Do you think they submit spam by hand?
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: Ghost reply notifications
Given the rumors, yes some might.
Re: Ghost reply notifications
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.
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: Ghost reply notifications
*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...
Shame that chase showed no attempt of copying parts of that...
Re: Ghost reply notifications
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.
Found on Google using: spam words
Just hack up a quick script to parse the list and set them in the DB for you.
- chase
- Site Admin
- Posts: 710
- Joined: Wed Oct 20, 2004 10:46 pm
- Libera.chat IRC: chase_osdev
- Location: Texas
- Discord: chase/matt.heimer
- Contact:
Re: Ghost reply notifications
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
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
Re: Ghost reply notifications
It's the same question every time and it is presented as plain text rather than a dynamically created image. lol
- chase
- Site Admin
- Posts: 710
- Joined: Wed Oct 20, 2004 10:46 pm
- Libera.chat IRC: chase_osdev
- Location: Texas
- Discord: chase/matt.heimer
- Contact:
Re: Ghost reply notifications
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.purage wrote:It's the same question every time and it is presented as plain text rather than a dynamically created image. lol
- Troy Martin
- Member
- Posts: 1686
- Joined: Fri Apr 18, 2008 4:40 pm
- Location: Langley, Vancouver, BC, Canada
- Contact:
Re: Ghost reply notifications
You could take it a step further and make it octal, just to make it different/harder.