Click here to Skip to main content
Licence CPOL
First Posted 30 Jan 2007
Views 38,093
Downloads 58
Bookmarked 41 times

Simple web based obfuscation

By | 30 Jan 2007 | Article
Protect sensitive data from nasty web bots using server / client obfuscation methods.

Introduction

A while ago, I had to make a web page with lots of sensitive customer details in a GridView on an ASP.NET page. I thought this is really bad, what happens if this data gets screen scraped by some nasty web bot that happens to match on email Regular Expressions? So I had a think, and an investigation into MSDN. And have come up with what I think is a nice solution.

The Basic Idea

The System.Text namespace has an ASCII encoding, and there is also a System.BitConvertor, so I thought about it. And thought I could actually encode the sensitive data using this method and store the ASCII / BitConverted data in the server requested HTML. Then, use JavaScript to reverse this process when the page is first loaded. That is what is presented in this article.

Probably the easiest way to get this is to look at the code.

Code

It's all in one web form, .. Nice and easy

Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" 
            CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Simple web encryption</title>
    
<style type="text/css">
body 
{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    text-decoration: none;
    position: relative;
    color: #000000;
    margin : 0px;
    overflow-x : hidden;
    width: 100%;


}  
</style>   
<script language="javascript">
        /*
        ====================================================================
        This function helps protect the email address from the evil spam-bots
        that scan web pages for useful data such as (email addresses). 
        Instead of using the data directly, the encoded value is stored in the
        html and decoded when required.
        ====================================================================
        */
        function decode(ServerEncoded)
        {
        // The ServerEncoded parameter is a string that contains the encoded data.
        // Each character in the ServerEncoded parameter has been converted into 
        // a two digit number (hex / base16). This function converts the
        // series of numbers back into the normal form and returns the 
        // decoded string to the client

        // holds the decoded string
        var res = "";

        // go through and decode the full input server encoded string
        for (i=0; i < ServerEncoded.length;)
        {
            // holds each letter (2 digits)
            var letter = "";
            letter = ServerEncoded.charAt(i) + ServerEncoded.charAt(i+1)

            // build the real decoded value
            res += String.fromCharCode(parseInt(letter,16));
            i += 2;
        }
        //return the new decoded string to allow it to be rendered to screen
        return res;
        }


        /*
        ====================================================================
        This function gets a reference to the server encrypted string and
        then decrypts this using the decode() function and sets the
        txtDecrypted value to the value return by the decode() function
        ====================================================================
        */
        function GetEmailAndDecode() {
        
            //get the table element
            var txtSvrEncr = document.getElementById('txtServerEncrypted');
            var txtJSDecr = document.getElementById('txtDecrypted');
            txtJSDecr.value = decode(txtSvrEncr.value);
            
            var txtAllTog = document.getElementById('txtAllTogether');
            txtAllTog.value = decode(txtAllTog.value);
        }
</script>
    
    
</head>
<body onload="GetEmailAndDecode();">
    <form id="form1" runat="server">
    <div>
        
        <h1>Simple ASP .NET data protection</h1>
        <p>
        This simple web page contains a method 
        for keeping sensitive data (such as emails) safe, by
        employing server side encryption and client side decryption. 
        It could be used for any data
        I am using emails, but it could be applied to anything. You choose.
        <br/>
        <br/>
        We all have emails these days, and this is somepeople 
        main contact detail. As such dont
        we all deserve to have this one detail kept secret 
        from web bots that screen scrape web sites
        looking for emails. This is what is done, 
        its easy just match an email regular expression and
        away you go. They would easily be able to pull out 
        something like myname@hotmail.com
        <br/> 
        <br/> 
        What this piece of codebehind stuff and javascript (in this page) 
        will show, is how to encrypt
        a users email before sending the page to the client. 
        And then use javascript to decrypt it
        back to an email again. The great part is that 
        the actual HTML code doesnt contain the email
        at all, so the nasty web bot cant get the users personal 
        information out of the page. Ha Ha.
        <br/> 
        <br/>      
        <br/> 
        <br/>                    
        <b><asp:Label ID="Label1" runat="server" 
           Text="Normal email (BAD, web bot could grab this)">
           </asp:Label></b>
        <br/> 
        <br/>              
        <asp:TextBox ID="txtRawEmail" runat="server" 
           Width="357px">myname@hotmail.com</asp:TextBox>
        <br/> 
        <br/> 
        <br/> 
        <br/>             
        <b><asp:Label ID="Label2" runat="server" 
           Text="Server side encrypted email / No javascript decryption...yet">
           </asp:Label></b>
        <br/> 
        <br/>             
        <asp:TextBox ID="txtServerEncrypted" runat="server" 
           Width="357px"></asp:TextBox>
        <br/> 
        <br/> 
        <br/> 
        <br/>             
        <b><asp:Label ID="Label3" runat="server" 
          Text="Javascript decryption, from Server side encrypted email"></asp:Label></b>
        <br/> 
        <br/>              
        <asp:TextBox ID="txtDecrypted" runat="server" 
           Width="357px"></asp:TextBox>                                    
        <br/> 
        <br/> 
        <br/> 
        <br/>             
        <b><asp:Label ID="Label4" runat="server" 
          Text="Putting it all together. Server side encrypted email / 
                   Javascript decryption. Ha Ha web bot"></asp:Label></b>
        <br/> 
        <br/>              
        <asp:TextBox ID="txtAllTogether" runat="server" 
               Width="357px"></asp:TextBox>             
        </p>                  
    </div>
    </form>
</body>
</html>
Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// <summary>
/// This page is a throw away, it is simply used to demonstrate the
/// use of the 2 tools : server side encryption / client side decryption
/// for preserving sensitive data from web bots
/// </summary>
public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        #region Email Encryption 
        //if javascript is enabled do the encoding
        if (Request.Browser.JavaScript)
        {
            //do the encryption using the raw email
            txtServerEncrypted.Text = System.BitConverter.ToString(
                            System.Text.ASCIIEncoding.ASCII.GetBytes(
                                    (txtRawEmail.Text))).Replace("-", "");

            //do the encryption using the raw email
            txtAllTogether.Text = System.BitConverter.ToString(
                            System.Text.ASCIIEncoding.ASCII.GetBytes(
                                    (txtRawEmail.Text))).Replace("-", "");
        }
        else
        {
            //couldnt find javascript so just use normal email
            txtServerEncrypted.Text = txtRawEmail.Text;
            txtAllTogether.Text = txtRawEmail.Text;
        }
        #endregion
    }
}

So How Does it Work

Well, what actually happens is very simple. Firstly, the server obfuscates the data, then the client-side JavaScript de-obfuscates it. But this means that the sensitive data is never actually within the source document in a format that a web bot can grab.

Let's have a look at the source file.

The value of the field txtAllTogether is just ASCII text. However, if we then look at the rendered output for this page, we can see that the data has been de-obfuscated using client-side JavaScript. This will work with any data at all. I just chose email, as it's the most obvious form of data that should be kept private.

The attached project contains a single page, which has four text fields on it:

  • The raw data
  • The server side ASCII / BitConverted data
  • The server side ASCII / BitConverted data through JavaScript
  • Putting it all together in one textbox

What Do You Think?

That's it. I would just like to ask, if you liked the article, please vote for it.

Conclusion

I have quite enjoyed constructing this article. I hope it helps someone the way it has helped me.

History

  • v1.1: 30/01/07: Changed wording from encryption to obfuscation, thanks to Jan Seda. He is actually correct. Well done, Jan.
  • v1.0: 30/01/07: Initial issue.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sacha Barber

Software Developer (Senior)

United Kingdom United Kingdom

Member

I currently hold the following qualifications (amongst others, I also studied Music Technology and Electronics, for my sins)
 
- MSc (Passed with distinctions), in Information Technology for E-Commerce
- BSc Hons (1st class) in Computer Science & Artificial Intelligence
 
Both of these at Sussex University UK.
 
Award(s)

I am lucky enough to have won a few awards for Zany Crazy code articles over the years

  • Microsoft C# MVP 2012
  • Codeproject MVP 2012
  • Microsoft C# MVP 2011
  • Codeproject MVP 2011
  • Microsoft C# MVP 2010
  • Codeproject MVP 2010
  • Microsoft C# MVP 2009
  • Codeproject MVP 2009
  • Microsoft C# MVP 2008
  • Codeproject MVP 2008
  • And numerous codeproject awards which you can see over at my blog


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberGUI Developer6:47 21 Dec '08  
QuestionObfuscation of email addresses in normal HTML pages Pinmemberpcug22:54 5 Nov '08  
AnswerRe: Obfuscation of email addresses in normal HTML pages PinmvpSacha Barber1:25 6 Nov '08  
GeneralThank you PinmemberJaECH5:08 11 Jun '08  
GeneralRe: Thank you PinmvpSacha Barber6:15 11 Jun '08  
Questionwhy response raw email when client doesn't support Javascript? PinmemberMember #243123816:00 7 Feb '07  
AnswerRe: why response raw email when client doesn't support Javascript? PinmemberSacha Barber21:47 7 Feb '07  
Questionhow to open this web based system? Pinmemberzixlea7:06 5 Feb '07  
AnswerRe: how to open this web based system? PinmemberSacha Barber22:57 5 Feb '07  
Make sure you have IIS installed.
 
Then copy the attached project to C:\Inetpub\wwwroot make it a web shared folder (right click, then web share it)
 

Then goto internet explorer or your favourite browser and point the url to the path you created under wwwroot, so for example if I had a web shared folder under C:\Inetpub\wwwroot called "2_WebTools" (which is the name of the project in the zip file attached to this article) then you would have to type the url
 
http://localhost/2_WebTools/ + the ASPX page to load into the address bar (for this application the file is called "Default.aspx"
 
so the full URL would be http://localhost/2_WebTools/Default.aspx
 
But if you dont know ASP .NET you will have to learn a bit 1st me thinks.
 
Good luck though
 
sacha barber
 
sacha barber

GeneralNice PinmemberThe .NET Junkie11:01 30 Jan '07  
GeneralRe: Nice PinmemberSacha Barber22:05 30 Jan '07  
GeneralObfuscation PinmemberJan Seda3:52 30 Jan '07  
GeneralRe: Obfuscation PinmemberSacha Barber6:47 30 Jan '07  
GeneralRe: Obfuscation PinmemberJan Seda6:49 30 Jan '07  
GeneralRe: Obfuscation PinmemberSacha Barber7:56 30 Jan '07  
GeneralRe: Obfuscation PinmemberSacha Barber7:48 1 Feb '07  
GeneralRe: Obfuscation PinmemberJan Seda1:36 2 Feb '07  
GeneralRe: Obfuscation PinmemberSacha Barber22:22 2 Feb '07  
GeneralRe: Obfuscation PinmemberSacha Barber21:57 12 Feb '07  
GeneralRe: Obfuscation PinmemberJan Seda5:53 15 Feb '07  
GeneralRe: Obfuscation PinmemberSacha Barber7:02 15 Feb '07  
GeneralRe: Obfuscation PinmemberSacha Barber23:21 28 Feb '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 30 Jan 2007
Article Copyright 2007 by Sacha Barber
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid