Tagged Questions

0
votes
1answer
31 views

Disallowing proxies from POSTing

Hi there! I want to disallow proxies and spambots from posting in my website. What is the best way to do so? I've downloaded a blacklist and my first idea was to disable each of ips in my .htaccess …
2
votes
6answers
188 views

Blacklist of words on content to filter message.

Hi, For a website that takes input from kids we need to filter any naughty / bad words that they use when they enter their comments in the website (running PHP). The comments are a free field and …
0
votes
1answer
29 views

Out of the box spam filtering?

I work on a social media monitoring system. We don't crawl the web ourselves, we get feeds from aggregators like Spinn3r. In most cases, the "blogs" that are nothing but pages of links to porn sites …
2
votes
4answers
367 views

Neural networks for email spam detection

Let's say you have access to an email account with the history of received emails from the last years (~10k emails) classified into 2 groups genuine email spam How would you approach the task of …
0
votes
0answers
44 views

Virus / Spam Scanner Programatically for .NET ????

I am writing a piece of messaging software that will send and receive text, voice, fax etc. via SMTP (email). I need to Programatically have the ability to scan incoming and outgoing emails for …
5
votes
4answers
349 views

Calculating the probability of a token being spam in a Bayesian spam filter

I recently wrote a Bayesian spam filter, I used Paul Graham's article Plan for Spam and an implementation of it in C# I found on codeproject as references to create my own filter. I just noticed that …
0
votes
0answers
53 views

How to send spam to personal Junk folder with Exchange 2003 SP2? [closed]

I am trying to configure an Exchange Server to work with an antispam appliance so that all emails detected as spam by the appliance are sent to the exchange users personal junk folder (if possible …
1
vote
1answer
119 views

Bayesian Network for Spam Filtering

Hello, I want to use Bayesian Network mechanism for spam filtering. How do you think it should look a proper topology of the network? What about naive Bayes model? (The naive Bayes model is sometimes …
1
vote
2answers
143 views

What’s the most straightforward way to delete emails marked as spam by SpamAssassin?

I'm on Ubuntu Intrepid, using Postfix and SpamAssassin. I've seen approaches using procmail (like the one suggested @ Apache), but I'm looking for a solution that does not use procmail. This is a …
2
votes
2answers
28 views

In a system for moderating offensive user content, how do you decide on a threshold for automatic removal?

I'm writing a forum application and want to automatically moderate offensive posts using a flagging system similar to the one on StackOverflow in which users are given the ability to report …
2
votes
5answers
275 views

How effective is naive Bayesian filtering for preventing spam?

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 …
2
votes
1answer
71 views

Spam filtering for ASP.NET

Has anybody come across an elegant and efficient .NET spam filtering component that can be used in ASP.NET applications? I want something that I can pass a string and returns to me a percentage of how …