Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a fairly simple spam filter mechanism in place which uses a list of naughty words which are likely to be from spam (I use these for post content as well as user profile fields etc).

I currently have:

 array ('shop','bags','shoes','shag','watches','sales','health','insurance','trader','wedding','casino','hack','ps3','cheap','episode','accessories','movie','nobod.info')

What lists are you using? I'm adding/changing words all the time, so seeing other lists could be a big help!

share|improve this question
2  
Here's some decent reading material for you: codinghorror.com/blog/2007/12/blacklists-dont-work.html – Alexander Corwin Mar 9 '12 at 22:11

closed as off topic by Xeon06, Kirk Woll, skjaidev, paislee, Graviton Mar 10 '12 at 0:50

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Blacklisting words like this will not work effectively. Machine learning techniques are very useful here. That is, look at messages that are marked explicitly as spam, and let a computer learn what spam messages really look like. This is what mail sites like gmail use to fight against spam. This is a lot of work, but a very reliable way to fight spam (when was the last time you saw spam in your gmail inbox?)

Blacklisting words like these also have a very high false positive rate, which would be very annoying.

share|improve this answer
There are indeed some false positives, but the admins can overrule that very quickly. The message is only hidden until overruled by someone has permission to do so. Annoying indeed, but not a disaster at the moment. – Steven De Groote Mar 9 '12 at 22:19

Not the answer you're looking for? Browse other questions tagged or ask your own question.