<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;D0EMRHo6cSp7ImA9WhRRFE4.&quot;"><id>tag:blogger.com,1999:blog-7001023210301294057</id><updated>2011-11-28T00:14:45.419+01:00</updated><category term="introducing liame" /><category term="news" /><title>Liame, the email obfuscator</title><subtitle type="html">Open source email obfuscation using Javascript and CSS techniques for ASP.NET and other development technologies.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://liameobfuscator.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://liameobfuscator.blogspot.com/" /><author><name>José M. Aguilar</name><uri>http://www.blogger.com/profile/11683750380776435448</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/_O9D62hXq-ng/S6Hfc0RM0YI/AAAAAAAABOg/bEEA3DZ7Uac/S220/fb1.png" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/liame" /><feedburner:info uri="liame" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CUMBSH06eCp7ImA9WxNQE0g.&quot;"><id>tag:blogger.com,1999:blog-7001023210301294057.post-735632881578124547</id><published>2008-10-05T20:21:00.006+02:00</published><updated>2009-09-19T11:44:19.310+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-19T11:44:19.310+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="news" /><category scheme="http://www.blogger.com/atom/ns#" term="introducing liame" /><title>Introducing Liame</title><content type="html">&lt;strong&gt;Liame&lt;/strong&gt; is an open source server control for ASP.NET that obfuscates email addresses in a web page, using javascript and other techniques to hide them from spammers.&lt;br /&gt;&lt;br /&gt;In a nutshell, Liame takes the arguments specified by the user and constructs a complete HTML &lt;code&gt;&amp;lt;a href="mailto:..."&amp;gt;&lt;/code&gt; tag. This tag is encoded using one of the available algorithms, and then it generates the javascript functions that writes the decoded link into the page. Liame supports four algorithms out of the box:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;ROT(N) encoding, where N is a random number choosen at runtime&lt;/li&gt;&lt;li&gt;Base64 encoding&lt;/li&gt;&lt;li&gt;Hexadecimal encoding, that converts the tag in a sequence of hexadecimal character codes&lt;/li&gt;&lt;li&gt;Null encoding, which was used for testing and as starting point to develop new algorithms.&lt;/li&gt;&lt;/ul&gt;Each of them is implemented in a class that includes the encoding algorithm as well as the javascript code needed to &lt;img style="FLOAT: right; MARGIN: 10px 0px 10px 10px" alt="Liame in the Toolbar" src="http://3.bp.blogspot.com/_O9D62hXq-ng/SN_JphDjXnI/AAAAAAAAAn0/zQPPmft4FkU/s400/liame-toolbox.jpg" /&gt;decode it, that must inherit from a base Codec class. These codecs include some other obfuscation techniques, such as splitting the string, replacing some special characters, or generate distinct variable and function names in each execution, that may help to hide the email address from spammers. By the way, you can develop your own Codec and tell the control to use it quite easily.&lt;br /&gt;&lt;br /&gt;Yes but... what happens if the user has disabled javascript? The control can also generate a &lt;code&gt;&amp;lt;noscript&amp;gt;&lt;/code&gt; tag including some known CSS obfuscation techniques, such as inserting invisible tags or changing the text direction of the email address. In this case, the email will be shown without the &lt;code&gt;mailto:&lt;/code&gt; link.&lt;br /&gt;&lt;br /&gt;To use Liame in your developments, you have to &lt;a href="http://code.google.com/p/liame/downloads/list"&gt;download it from Google Code&lt;/a&gt;, and add a reference to the assembly Liame.dll in your project. You could also insert the component in your Visual Studio's toolbar, so you'll be able to drag and drop the control into your page or masterpage.&lt;br /&gt;&lt;br /&gt;But wait, that's not all. Using Liame's technology &lt;strong&gt;it is possible to generate javascript code ready to use&lt;/strong&gt; in your pages, regardless of the server language or development platform. So you can enjoy Liame obfuscation with HTML, PHP, Java and so on, just using the &lt;a href="http://www.sodefesa.es/jmaguilar/liame/javascriptgeneratore.aspx"&gt;Liame javascript on-line generator&lt;/a&gt;. It'll help you to generate code that you can copy and paste into your page, like the following example, which renders a &lt;code&gt;mailto&lt;/code&gt; link:&lt;br /&gt;&lt;br /&gt;&lt;img style="display:block; margin:0px auto 10px; text-align: center;" src="http://lh4.ggpht.com/josemague/SOTavZMCg3I/AAAAAAAAAp4/GtYkzhrCOj0/EncodedLiameLink.jpg" border="0" alt="Generated javascript" /&gt;&lt;br /&gt;&lt;br /&gt;The ASP.NET server control, as well as a &lt;a href="http://www.sodefesa.es/jmaguilar/liame/defaulte.aspx"&gt;demonstration project&lt;/a&gt;, is released under a &lt;a href="http://www.opensource.org/licenses/bsd-license.php"&gt;BSD license&lt;/a&gt;. You can download the code at the &lt;a href="http://code.google.com/p/liame/wiki/LiameObfuscator"&gt;project's home&lt;/a&gt;, in Google Code.&lt;br /&gt;&lt;br /&gt;Please, feel free to send me your comments, suggestions, opinions or new ideas to get a more effective obfuscation.&lt;br /&gt;&lt;br /&gt;Welcome to Liame.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7001023210301294057-735632881578124547?l=liameobfuscator.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fRf8QnsHgNebge-raXShud84Z0c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fRf8QnsHgNebge-raXShud84Z0c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fRf8QnsHgNebge-raXShud84Z0c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fRf8QnsHgNebge-raXShud84Z0c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liame/~4/7Id7IgCf4Ao" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://liameobfuscator.blogspot.com/feeds/735632881578124547/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7001023210301294057&amp;postID=735632881578124547" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7001023210301294057/posts/default/735632881578124547?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7001023210301294057/posts/default/735632881578124547?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/liame/~3/7Id7IgCf4Ao/introducing-liame.html" title="Introducing Liame" /><author><name>José M. Aguilar</name><uri>http://www.blogger.com/profile/11683750380776435448</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/_O9D62hXq-ng/S6Hfc0RM0YI/AAAAAAAABOg/bEEA3DZ7Uac/S220/fb1.png" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_O9D62hXq-ng/SN_JphDjXnI/AAAAAAAAAn0/zQPPmft4FkU/s72-c/liame-toolbox.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://liameobfuscator.blogspot.com/2008/05/introducing-liame.html</feedburner:origLink></entry></feed>

