Are naive Bayesian based spam filters effective?
I heard that spammers easily bypass them by stuffing extra words (non spam related words).
What programming techniques can you use when using Bayesian filters to prevent that?
|
1
|
Are naive Bayesian based spam filters effective? I heard that spammers easily bypass them by stuffing extra words (non spam related words). What programming techniques can you use when using Bayesian filters to prevent that?
|
|||
|
|
|
|
Little outdated ... but contains good links on the pros/cons ! |
||
|
|
|
|
Paul Graham was the guy to really introduce the idea of using Bayesian spam filtering to the web at large with his original article A Plan for Spam, back in August 2002: http://www.paulgraham.com/spam.html then, his his follow up a year or so later introduced many of the problems that swiftly arose: http://www.paulgraham.com/better.html These are still pretty great works on the topic. In the second article, he mentions using CRM114, which works on a much wider set of patterns than just space-delimited words: http://crm114.sourceforge.net/ CRM114 is cool, but comes without much implementation help for a Spam system. Then, there's the open-source powertools for Bayesian filtering of spam like Death2Spam: and SpamProbe: http://spamprobe.sourceforge.net/server.html I find nothing works quite like filtering mail through a Gmail account. Happy hunting. |
||
|
|
|
|
I think for defeating the kind of spam attack you mention, the important thing is not the learning method but rather what features you train on. I use Fidelis Assis's OSBF-Lua which is a very successful filter: it keeps winning contests for spam filters. It uses Bayesian learning but I think the real reason for its success is three principles:
This combination of techniques is extremely effective. Disclaimer: I have worked with Fidelis on refactoring some of the software so that it can be used for other purposes such as classifying regular mail into groups or possibly one day trying to detect spam in blog comments and other places. |
||
|
|
|
|
You're right, naive Bayesian filters are susceptible to Bayesian poisoning. |
||
|
|
|
|
I use Popfile to not only sort away spam but also sort my email into categories and I find it hugely effective. It uses naive Bayesian filters. |
||
|
|