spam-prevention

Can we obtain hybrid algorithm for spam filtering from Naive Bayes & SVM?

自闭症网瘾萝莉.ら 提交于 2021-02-08 10:22:06
问题 I am developing a spam filtering application. I need suggestions regarding the hybrid algorithm from Naive Bayes & SVM.(e.g. based on feature vector, probabilities). Any help is appreciated. Can we develop hybrid algorithm from Naive bayes & SVM? 回答1: Not sure why would you want to merge these two specific methods, but you could use ensemble learning methods for that. EDIT: based on your comments, it seems you already have two independently trained classifiers, and would like to use them

How can I cut down on this spam, and what is the point of it anyway? [closed]

大憨熊 提交于 2020-02-23 07:14:50
问题 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 7 years ago . I run a small, niche personal ads site. People post ads and then other people reply to them, which sends an email to the original creator of the ad telling them that someone is interested and giving them contact information for that interested person. Lately there's been some weird spam. People are receiving

Is a Captcha and a math question enough for SPAM prevention?

会有一股神秘感。 提交于 2020-01-23 17:49:08
问题 One of my websites gets a ton of registration spam. I have a Captcha and a math question on the registration form but it doesn't seem to help much. Am I likely experiencing manual spammers or are my prevention mechanisms not good enough? The registration form is here: http://peaksoverpoverty.org/wp-signup.php Update I've been tracking behavior a bit closer over the past week and this is what a typical request looks like in the access logs: 174.132.130.194 - - [18/Jan/2011:07:24:55 -0600] "GET

How to validate SPF records with PHP

房东的猫 提交于 2020-01-06 18:45:21
问题 I'm developing a web mailing app on Codeigniter PHP. I would like to know how to check SPF records are valid with PHP. Is there a PHP API to do this? This is so I can implement SPF within my mailing App to verify a user has authorized our servers via SPF DNS records to send mail. 回答1: Look at the libraries here: http://www.openspf.org/Implementations None are in PHP, but they are in other languages, so if you get stuck creating a validator according to the publish standards, you can see how

How to validate SPF records with PHP

自闭症网瘾萝莉.ら 提交于 2020-01-06 18:45:01
问题 I'm developing a web mailing app on Codeigniter PHP. I would like to know how to check SPF records are valid with PHP. Is there a PHP API to do this? This is so I can implement SPF within my mailing App to verify a user has authorized our servers via SPF DNS records to send mail. 回答1: Look at the libraries here: http://www.openspf.org/Implementations None are in PHP, but they are in other languages, so if you get stuck creating a validator according to the publish standards, you can see how

Send simple text (not email) to SpamAssassin

泪湿孤枕 提交于 2020-01-05 08:37:14
问题 I was wondering if I can send simple text to SpamAssassin. I want to put the comment in a text file and call 'spamc < file.txt' (i don't know if it is possible to send text direct to spamc). The problem is that SpamAssassin will report everything as spam if i don't specify headers or title ... Can i bypass all headers verification - or there is any mode where i can scan simple plain text ? (i don't have experience so I prefer to ask this. Thanks in advance) 回答1: I believe you can disable any

Easiest Way to Check if a Java String Instance Might Hold Spam Data

本小妞迷上赌 提交于 2020-01-05 02:34:38
问题 I have a process which iterates String instances. Each iteration does few operations on the String instance. At the end the String instance is persisted. Now, I want to add for each iteration a check if the String instance might be spam. I only have to verify that the String instance is not "adult materials" spam. Any recommendations? 回答1: This is a very hard problem that the industry is constantly trying to solve. The best thing for you to do is to try and use an existing solution like

Easiest Way to Check if a Java String Instance Might Hold Spam Data

南楼画角 提交于 2020-01-05 02:34:26
问题 I have a process which iterates String instances. Each iteration does few operations on the String instance. At the end the String instance is persisted. Now, I want to add for each iteration a check if the String instance might be spam. I only have to verify that the String instance is not "adult materials" spam. Any recommendations? 回答1: This is a very hard problem that the industry is constantly trying to solve. The best thing for you to do is to try and use an existing solution like

I've seen this email protection on a website and would like to know how they have achieved this [duplicate]

孤人 提交于 2020-01-03 20:56:11
问题 This question already has answers here : CF-Hash attribute and script mysteriously added to mailto links (4 answers) Closed 2 years ago . I would like to know how I can replicate this sort of email protection and what parts of it actually does what please. <a href="cdn-cgi/l/email-protection.html#d7a7a5bea1b6b4ae97b0b6a3bfb2a5b4b8b9a3b2b9a3f9b4b8ba"><span class="__cf_email__" data-cfemail="0474766d7265677d446365706c6176676b6a70616a702a676b69">[email protected]</span><script data-cfhash='f9e31

Django comment spam

北战南征 提交于 2019-12-30 10:09:14
问题 How well does Django's anti-spam system in the comments framework work? Have you used it? What percentage of comment-spam does it prevent roughly? Is there anything else you do to help prevent comment spam on sites using the Django comments framework? 回答1: By default Django only offers a honey pot field and a hash check for spam prevention. It stops a lot of spam but absolutely not all. I'd guess at maybe 50-70% or so. For a very small site I have with less than 50 unique visitors per day,