Term of the Moment

bare metal


Look Up Another Term


Definition: email obfuscator


A software routine that makes email addresses on Web pages difficult to decipher for spambots. The obfuscator converts the text of the address into HTML codes that are typically not recognized by the spambot. However, the text renders properly on screen and is correctly handled by the email client that sends the message.

Although the code would confuse most bots attempting to capture addresses, a sophisticated spambot could, in fact, decode the HTML and obtain the real address. In the following example, sam@sam.com is concealed by obfuscating most of the characters in the address and leaving the rest alone. See spambot.

   sam@sam.com  is converted to:

   sam@sam.com


   Conversion Details
   Text   HTML or Text

   s      s
   a      a
   m      m
   @      @
   s      s
   a      a
   m      m
   .      .
   c      c
   o      o
   m      m

   Look up ASCII chart for character codes.