Add to My Yahoo! | Google Reader or Homepage | Add to Windows Live | Add to Windows Live Alerts

Wictor Wilén

Microsoft Certified Master (MCM) - SharePoint 2010 | Microsoft Most Valuable Professional (MVP) - SharePoint Server MVP | Author

Preventing comment spam using LinkSleeve

Posted at 2006-11-05 08:13 by Wictor Wilén in .NET , C# , XML , Website with 3 comments.

I have a lot of problem with comment spam on the blog as well as spamming on the trackbacks and the problem is spread widely over the blogging world. A lot of you turn off comments or have registration or other methods to get rid of the comment spamming.

LinkSleeve (SLV - Spam Link Verification) is a link spam solution that checks a text for well-known URL's in a text and tells if it contains any known spam addresses. This service is provided via an XML-RPC service without any licensing.

This service is ideal for you out there who have built their own blog application, and here is a simple implementation of it in C#:

public class LinkSleeve{    
// http://www.linksleeve.org/ public static bool IsSpam(string text){ ILinkSleeve proxy = (ILinkSleeve) XmlRpcProxyGen.Create( typeof(ILinkSleeve) ); return proxy.Check(text) == 0 ? true : false;
} [XmlRpcUrl("http://www.linksleeve.org/slv.php")] public interface ILinkSleeve{ //INFO: must be public for .NET 2.0 support [XmlRpcMethod("slv")] int Check(string text); } }

The Check method returns true if the text seems to contain spam and otherwise false.

To be able to use this you need to have XML-RPC.NET library.

Comments and trackbacks

#  Great site. Keep doing., http://profiles.friendster.com/carmenelectratape First carmen electra sex tape, fgwai, by carmen electra sex tape
Screenshot from websnpr Great site. Keep doing., http://profiles.friendster.com/carmenelectratape First carmen electra sex tape, fgwai,
#  Excellent site. It was pleasant to me., Buy bactrim [url=http://grou.ps/bactrims#1]Buy bactrim[/url], :P, by bactrim
Screenshot from websnpr Excellent site. It was pleasant to me., Buy bactrim [url=http://grou.ps/bactrims#1]Buy bactrim[/url], :P,
#  So where it to find, http://cre.ations.net/creator/kimkardashiansextape kim kardashian sex tape free, 721279, by Cheap kim kardashian sex tape
Screenshot from websnpr So where it to find, http://cre.ations.net/creator/kimkardashiansextape kim kardashian sex tape free, 721279,
Make a comment on this post:
Subject:  

Your name:  
Your Url:  
Note: submissions may have to be approved before being visible, so don't submit your comment multiple times.