tags:

views:

48

answers:

3
<a href="&#109;&#x61;... &#111;&#x6d;">&#x63;&#x74;... e&#115;&#x73;</a>

It's said to be the same as :

<a href="mailto:[email protected]'>contact</a>

But can work against email harvesting robot.

+5  A: 

They're numeric character entities, trying to trick spiders into not seeing "mailto" or characters in the form of an email address. And as an anti-harvesting strategy, it probably hasn't worked since 1997 or so. :-)

T.J. Crowder
Hasn't worked because that most languages now have native functions like PHP's html_entity_decode() which does the match between those entities and the real characters.
jpabluz
@jpabluz: Exactly. The spiders interpret the entities and then scan the resulting string.
T.J. Crowder
A: 

This:

<a href="&#109;&#x61;... &#111;&#x6d;">&#x63;&#x74;... e&#115;&#x73;</a>

makes it a little difficult for email harvesting than its counter part:

<a href="mailto:[email protected]'>contact</a>

However, there are ways to decrypt even that so this is not that much useful in practice :(

Sarfraz
+1  A: 

It assumes that spambot spiders treat webpages as text to regex match against instead of performing the most basic HTML parsing.

David Dorward