spam-prevention

How to configure AWS ELB to block certain IP addresses? (known spammers) [closed]

故事扮演 提交于 2019-12-03 11:35:50
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. I am looking for a way to drop connections from known spam ip addresses on an Amazon's Elastic Load Balancer (ELB)? I am currently doing this at the web server level (multiple instances, running behind the ELB), but wondering if there is a way to do it at the ELB. This way, I can avoid configuring each web server instance for this. I typically pull the Drop List from Spamhause.org every day and update my web server

Combining individual probabilities in Naive Bayesian spam filtering

断了今生、忘了曾经 提交于 2019-12-03 06:55:52
问题 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 code. I've implemented code to calculate probability that a message is spam given that it contains a specific word by implementing the following formula from the wiki: My PHP code: public function pSpaminess($word) { $ps = $this->pContentIsSpam(); $ph = $this->pContentIsHam(); $pws = $this-

What's the best open-source Java Bayesian spam filter library? [closed]

霸气de小男生 提交于 2019-12-03 05:54:48
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . In other answers at Stackoverflow it's been suggested that Weka is good, but there are others (Classifier4j, jBNC, Naiban). Does anyone have actual experience with these? 回答1: Weka is awesome, but Classifier4J is probably closer to what you want, since it's more aimed at text recognition. 回答2: You could also

Problem with Precision floating point operation in C

强颜欢笑 提交于 2019-12-03 04:25:26
问题 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 have problem implementing the algorithm because of the limitations in the C's datatype. ( Algorithm I am using is given here, http://en.wikipedia.org/wiki/Bayesian_spam_filtering ) PROBLEM STATEMENT: The algorithm involves taking each word in a document and calculating probability of it being spam

Honeypot implementation

荒凉一梦 提交于 2019-12-03 03:52:48
Trying to filter out spam from an online form. I have a hidden div with an input. The idea is that if something goes into the field, the form will ID the user as a bot and reject the submission. After trying to implement this method, the bots are still getting through. I'm not very familiar with javascript (or spam-filtration, for that matter) - here's what I'm working with: html (within the form): <form action="#" method='post' id='vsurvey' name='defer'> <div id="hp-div"> If you see this, leave this form field blank and invest in CSS support. <input type="text" name="question_20579" value=""

What is the best method to keep bots from spamming your blog?

吃可爱长大的小学妹 提交于 2019-12-03 03:37:02
I got a problem at my blog. I got visits from kind bots who leave "nice" comments to my blog posts :( I'm wondering if there is a smarter way to keep them out, besides using the captcha modules. My problem with the captcha modules is that I thinks they are anoying to the user :( I don't know if it's any help to anyone but my site is in asp.net mvc beta. Have you thought about using this? http://akismet.com/ From their FAQ When a new comment, trackback, or pingback comes to your blog it is submitted to the Akismet web service which runs hundreds of tests on the comment and returns a thumbs up

Bayesian spam filtering library for Python

夙愿已清 提交于 2019-12-03 02:02:13
问题 I am looking for a Python library which does Bayesian Spam Filtering. I looked at SpamBayes and OpenBayes, but both seem to be unmaintained (I might be wrong). Can anyone suggest a good Python (or Clojure, Common Lisp, even Ruby) library which implements Bayesian Spam Filtering? Thanks in advance. Clarification : I am actually looking for a Bayesian Spam Classifier and not necessarily a spam filter. I just want to train it using some data and later tell me whether some given data is spam.

Combining individual probabilities in Naive Bayesian spam filtering

≡放荡痞女 提交于 2019-12-02 20:36:08
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 code. I've implemented code to calculate probability that a message is spam given that it contains a specific word by implementing the following formula from the wiki: My PHP code: public function pSpaminess($word) { $ps = $this->pContentIsSpam(); $ph = $this->pContentIsHam(); $pws = $this->pWordInSpam($word); $pwh = $this->pWordInHam($word); $psw = ($pws * $ps) / ($pws * $ps + $pwh * $ph); return $psw

What's the best open-source Java Bayesian spam filter library? [closed]

安稳与你 提交于 2019-12-02 19:18:36
In other answers at Stackoverflow it's been suggested that Weka is good, but there are others ( Classifier4j , jBNC , Naiban ). Does anyone have actual experience with these? Thomi Weka is awesome, but Classifier4J is probably closer to what you want, since it's more aimed at text recognition. You could also have a look at the still very new Apache Mahout project. Another new library is ci-bayes , nice and very simple to use. disclaimer: I have submitted a patches to this project and am currently a committer 来源: https://stackoverflow.com/questions/480683/whats-the-best-open-source-java

Bayesian spam filtering library for Python

青春壹個敷衍的年華 提交于 2019-12-02 15:38:59
I am looking for a Python library which does Bayesian Spam Filtering. I looked at SpamBayes and OpenBayes, but both seem to be unmaintained (I might be wrong). Can anyone suggest a good Python (or Clojure, Common Lisp, even Ruby) library which implements Bayesian Spam Filtering? Thanks in advance. Clarification : I am actually looking for a Bayesian Spam Classifier and not necessarily a spam filter. I just want to train it using some data and later tell me whether some given data is spam. Sorry for any confusion. Do you want spam filtering or Bayesian classification? For Bayesian