spam-prevention

Django comment spam

筅森魡賤 提交于 2019-12-01 07:05:00
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? 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, that is all that is needed. For larger sites, you definitely need additional protection like Akismet. There's

What can be done to prevent spam in forum-like apps?

走远了吗. 提交于 2019-12-01 06:37:51
Are there ways except CAPTCHAs for web apps like pastie.org or p.ramaze.net ? CAPTCHAs take too long for a small paste for my taste. You could try Honeypot CAPTCHAs . Essentially, you hide some form fields using CSS. Your users will never fill out the fields because they won't see them, but spam bots who don't support CSS will fill them out. On the server side you just ignore comments/pastes/etc. that have that field filled out. In addition to honeypots, you can use timestamps and one-time-tokens to stop replay attacks. Here's a discussion of combining the two techniques . Personally, on my

Should mailto be used in HTML5?

倖福魔咒の 提交于 2019-12-01 02:34:21
A year or so ago I decided to stop using the mailto tag because many times it is annoying to the user. It will bring up an email program that the user may not be using at the time, which may also take time to load and may not be what the user wanted to do when he/she clicked on what looked like a link. Instead I decided to just start displaying the email address without the mailto tag. I believe that both ways probably can produce spam. My questions are these, Is the mailto tag the accepted way to setup email links, or do good people/companies avoid them? Second, if they both create spam, is

Detecting a (naughty or nice) URL or link in a text string

人盡茶涼 提交于 2019-11-30 10:22:54
问题 How can I detect (with regular expressions or heuristics) a web site link in a string of text such as a comment? The purpose is to prevent spam. HTML is stripped so I need to detect invitations to copy-and-paste. It should not be economical for a spammer to post links because most users could not successfully get to the page . I would like suggestions, references, or discussion on best-practices. Some objectives: The low-hanging fruit like well-formed URLs ( http://some-fqdn/some/valid/path

Currently best spam filter algorithm

喜夏-厌秋 提交于 2019-11-30 10:04:44
What is the currently best method to detect spam ? especially on mobile text message. are there any resource or comparison analysis ? It's good to look into supervised learning techniques. There've been a number of studies where the Multinomial Naive Bayes Classifier has been used for spam email filtering with a lot of success. If it worked for spam email filtering, then it should work with SMS filtering. What you need is a huge dataset of example spam SMS texts and train the classifier with it. Also, it may be helpful to look into the Support Vector Machine, which; although less widely used

Good non-intrusive anti-spam email obfuscator?

▼魔方 西西 提交于 2019-11-30 08:55:23
I'm trying to come up with a JavaScript email obfuscator to reduce the chance for spam in emails listed on a web site. Right now I've got a JavaScript based obfuscator that uses a combination of HTML encoding & JavaScript to convert an obfuscated email into a normal email transparently. What I do is this: Format the "mailto:" part of the href in links to be HTML encoded like: mailto: I also encode the email, replacing the @ sign with (a) , so that the email reads something like: stackoverflow(a)example.com I then use some JavaScript to decipher all mailto links which have this (a) sign in the

Bypass Gmail's spam filter (mails sent with PHP from a shared host)

狂风中的少年 提交于 2019-11-30 06:29:00
问题 TL;DR: Mails sent from shared hosting (such as a cheap domain from Unoeuro or One.com) end up in spam. How to fix? I made a mail-system, that first generated a PDF-file (using FPDF), whereafter it sent the PDF-file as an attachment with PHP's Swiftmailer. This email was sent out to 130 people (as a 'one-of' invoice). But it landed in the spam-filter for almost everybody. I tried adjusting SwiftMailers header-settings, but without any luck. Even mails that I haven't sent to before (thoroughly

How do I protect my forum against spam?

 ̄綄美尐妖づ 提交于 2019-11-30 04:04:30
I have a forum on a website I master, which gets a daily dose of pron spam. Currently I delete the spam and block the IP. But this does not work very well. The list of blocked IP's is growing quickly, but so is the number of spam posts in the forum. The forum is entirely my own code. It is built in PHP and MySQL. What are some concrete ways of stopping the spam? Edit The thing I forgot to mention is that the forum needs to be open for unregistered users to post. Kinda like a blog comment. In a guestbook app I wrote, I implemented two features which prevent most of the spam: Don't allow POST as

How to create a “Nuclear” honeypot to catch form spammers

[亡魂溺海] 提交于 2019-11-30 00:21:15
My current honey pot on my registration form is an entry for phone number which is placed off screen using position: fixed; . It tricked a standard breed form filler, but doesn't work as well as I though. Also, the spambots immediately responded to changes in the form, meaning that this is automatic, what can I do. Note: I hate captchs since the make they users solve my problems which is never good. Build a really smart honeypot That may seem obvious, but here are a few tricks(Details later): Think Like a spam bot Assume that they are able to know what is on screen or behind other elements

Neural networks for email spam detection

若如初见. 提交于 2019-11-29 21:03:54
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 creating a neural network solution that could be used for spam detection - basically classifying any email either as spam or not spam? Let's assume that the email fetching is already in place and we need to focus on classification part only. The main points which I would hope to get answered would be: Which parameters to choose as the input for the NN, and why? What structure of the NN would most