Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
6answers
473 views

Problem with Precision floating point operation in C

For one of my course project I started implementing "Naive Bayesian classifier" in C. My project is to implement a document classifier application (especially Spam) using huge training data. Now I ...
12
votes
2answers
251 views

Combining individual probabilities in Naive Bayesian spam filtering

I'm currently trying to generate a spam filter by analyzing a corpus I've amassed. I'm using the wikipedia entry http://en.wikipedia.org/wiki/Bayesian_spam_filtering to develop my classification ...
7
votes
4answers
961 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 ...
7
votes
5answers
1k views

Naive Bayesian spam filtering effectiveness

How effective is naive Bayesian filtering for filtering spam? I heard that spammers easily bypass them by stuffing extra non-spam-related words. What programming techniques can you use with Bayesian ...
5
votes
4answers
2k 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 ...
4
votes
1answer
73 views

How to check spammyness of a link/url

I know that most spams are related with one or more links, so I am wondering if there is any web service which can check the spam-weight/spammyness of a URL. Similar to how Akismet can check the ...
4
votes
3answers
235 views

fighting spam bots

I have C# form in the site and want to prevent spam bots from filling it. The trick is, that I want to avoid CAPTHA or any other user input to avoid loosing a single registration. Here are some ...
4
votes
1answer
196 views

What is the best way to filter spam with JavaScript?

I have recently been inspired to write spam filters in JavaScript, Greasemonkey-style, for several websites I use that are prone to spam (especially in comments). When considering my options about how ...
4
votes
5answers
476 views

naive bayesian spam filter question

I am planning to implement spam filter using Naive Bayesian classification model. Online I see a lot of info on Naive Bayesian classification, but the problem is its a lot of mathematical stuff, ...
3
votes
3answers
946 views

How Gmail spam filter works?

I'm always surprised by the high quality of Gmail spam filter. For the last year, it filtered 99.95% of the spam, and blocked by mistake only one mail. By comparison, any other mail service I used ...
3
votes
1answer
501 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 ...
2
votes
2answers
45 views

Strange FANN behavior in spam classification task

I tried to write simple spam classifier with help of FANN library. To do it I collected number of spam and ham email letters, and collected a dictionary of the most used English words. I created a ...
2
votes
2answers
163 views

URL Shortener Spam

Lately I'm starting to receive spam URLs into my forum software via URL shortener. In the past, they are easy to block by domain, but I can't exactly block the domain for URL shortener since I'm ...
2
votes
3answers
385 views

Publicly Available Spam Filter Training Set

I'm new to machine learning, and for my first project I'd like to write a naive Bayes spam filter. I was wondering if there are any publicly available training sets of labeled spam/not spam emails, ...
2
votes
4answers
384 views

Php: Check if email content is spam

I'm creating a newsletter feature that will allow users to send emails. Since there are malicious people out there who would want to send spam, I'm wanting to be able to check and see if the message ...
2
votes
1answer
172 views

How does MSN filter spam?

I am trying to create a newsletter for our business. The last few days have been spent testing, and one of things I have noticed is that MSN seemingly randomly filters out some of my test messages. ...
2
votes
6answers
1k views

Blacklist of words on content to filter message

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 users ...
2
votes
2answers
61 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
2answers
246 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 ...
1
vote
0answers
18 views

How to get a list of such sites that “promote traffic” [closed]

I won't discuss legitimity of such sites, they are legitimate I guess, but they are making me traffic from all around the world that even don't know our language to generate hits on their posts as I ...
1
vote
1answer
72 views

Spam protection algorithm for SMS

I am developing an android messaging application. Is there a good spam filtering algorithm that works well for SMS? Please give some things to kick start. Rahim.
1
vote
4answers
112 views

I need a neat data structure suggestion to store a very large dataset (to train Naive Bayes in Python)

I am going to implement Naive Bayes classifier with Python and classify e-mails as Spam or Not spam. I have a very sparse and long dataset with many entries. Each entry is like the following: 1 9:3 ...
1
vote
0answers
97 views

private message - spam detection/spam filter system in java

I've build a private message system on a site, and I want to implement a spam filter. preferably in java. So.. I'm interested if there a java library that already did this rather than start building ...
1
vote
2answers
394 views

Using document length in the Naive Bayes Classifier of NLTK Python

I am building a spam filter using the NLTK in Python. I now check for the occurances of words and use the NaiveBayesClassifier resulting in an accuracy of .98 and F measure for spam of .92 and for ...
1
vote
3answers
369 views

Mail goes to Junk folder in hotmail

I am able to send an email successfully to my gmail account and the mail goes to the INBOX, but when i send it to hotmail it reaches the Junk/Spam folder? I am using System.Net.Mail to send email.
1
vote
2answers
148 views

Automatic spam filtering or flagging for Django or Python?

I'm working on a Django-based site that consists mostly of user- generated content: reviews, comments, tweet-like posts, etc. I'm concerned about spam. Are there any spam filters available for ...
1
vote
2answers
479 views

Naive Bayesian classification (spam filtering) - Doubt in one calculation? Which one is right? Plz clarify

I am implementing Naive Bayesian classifier for spam filtering. I have doubt on some calculation. Please clarify me what to do. Here is my question. In this method, you have to calculate P(S|W) ...
1
vote
3answers
326 views

Best solution to anti-spam in PHP?

How to distinguish robots from normal user? How does SO do this job? Currently I'm met with a robot which post once every 1 hour...
1
vote
2answers
545 views

Email Spam Filtering at the Code Level in Java

I'm writing code to download email from various servers, some of which are outside of my control. I'd like to be able to filter out spam at the code level since I can't always rely on the servers to ...
1
vote
1answer
413 views

Bayesian Network for Spam Filtering

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 called ...
0
votes
0answers
49 views

php mail header injection cleaning for contact form

I came up with the following script to clean my php mail contact forms. Was wondering if there is anything else that is recommended I should put in here. This is just a snippet of the code as I also ...
0
votes
1answer
94 views

How to Design an Efficient Spam-Filtering and Moderation System?

I am building a website that allows user content to be posted. There is a flag button at the bottom of the user's post, enabling other registered users to click, identifying the post as offensive, a ...
0
votes
0answers
6 views

http:BL is reporting an error: wp_httpbl_log doesn't exist

The table is missing. I deactivated, deleted and reinstalled the plugin without any change. The table is still missing. I found this support tag, but the solution there did not work for me: ...
0
votes
1answer
34 views

PHP filter_var: FILTER_VALIDATE_URL include more cases

It only validates urls that are of the format: http://www.example.com How do I also validate partial urls, such as: www.example.com, example.com, or blah/example.php, etc... (I need to do this to ...
0
votes
1answer
29 views

Considerations for anonymous users

So, the Web application I'm working on allows input from anonymous users (and their participation in the flagging system). As for the spamming issue, would it be enough to use the honeypot method or ...
0
votes
0answers
141 views

How to filter results in Solr MLTHandler to exclude documents containing blacklisted words?

I have a solr index which contains millions of textual documents, all submitted by users. Quite a lot of these documents are potential spam. In my webapp, I show a "related documents" when any user is ...
0
votes
2answers
241 views

Create a lot of 200 different Email Accounts in a short span of time?

I am trying to send bulk email from a few accounts email accounts, and for some reason, I think the emails get blocked and they do not reach the recipient. I think it is because of spam / filtering ...
0
votes
0answers
261 views

Wordpress - Difference between wp-signup and register

What is the difference between wp-signup.php and wp-login.php?action=register? My server can't handle the register spam (over 2.000/day) on my Wordpress Network so i decided to remove the ...
0
votes
1answer
31 views

Bulk legitimate email: Can I predict liklihood that the outgoing messages will be wrongly flagged as spam?

The recipients represent a wide variety of academic institutions and business organizations. Many use free email accounts too, like gmail and hotmail. There are several thousand addresses in the ...
0
votes
1answer
135 views

JavaScript SPAM Word Filter

HI I am trying to use Javascript to write a simple SPAM word filter that loops through an array of words and tries to match the whole word that is a passed in as string. Below is what I have so ...
0
votes
1answer
99 views

Spam protection in web app

I have a web app where users can post comments to it. Is there any plugins or anything that exist so I can scan these messages on their way into the database and only store ones that aren't "spam"? ...
0
votes
2answers
47 views

spamtrap find sites

How can I find any site with spamtrap email? I'd like to find a normal site with 1 or more traps. Thanks!
0
votes
0answers
35 views

Filter spam based on sending domain age

Recently a lot of spam has been bypassing SpamAssassin and various DNS blacklists. When I check whois with the sending host, almost invariably the domain was created within the last month. Is there ...
0
votes
2answers
95 views

How can I disable StopForumSpam spam filter in BlogEngine.NET 2.0

I'm using BlogEngine.NET v2.0.0.44 and I don't want any spam filters enabled as I plan to moderate all comments manually. I successfully disabled AkismetFilter and TypePadFilter by disabling their ...
0
votes
2answers
486 views

Can a comprehensive list of adult keywords be found anywhere?

I am looking for a comprehensive list of English adult keywords to be used on my website in a spam blacklist to prevent users from entering inappropriate keywords. A text file listing or web link of ...
0
votes
1answer
31 views

Does Spamassassin require compilation to use?

From what I have been able to gather, spamassassin is written in perl but there may also be compiled versions of it. Does one have to compile it inorder to use it? Can a perl script simply include ...
0
votes
3answers
455 views

Currently best spam filter algorithm

What is the currently best method to detect spam ? especially on mobile text message. are there any resource or comparison analysis ?
0
votes
1answer
152 views

Good spam filter options for django blogs/comments

I am working on a simple django app that allows users to create posts and then comment on them. I would like to have some sort of spam filtering implemented. At the moment I am only doing honeypot ...
0
votes
1answer
108 views

How do I create a plain-text version of an HTML email?

We are doing EDMs and we're doing it manually. However, this time, we only have 1 big image and some text at the bottom for the EDM (the image is like a christmas card). It goes directly to spam but ...
0
votes
1answer
179 views

reCAPTCHA or anti-spam filters?

For protecting my website from spam and malicious registrations/posts/etc, is it better to use something like reCAPTCHA or an anti-spam script? I was planning on implementing reCAPTCHA for user ...

1 2