Skip to main content
Email Password   helpLost your password?

 

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 though this is really bad, what happens if this data get 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 actually I could 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 1st loaded. That is what is presented in this article.

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

Code

Its all in the one web form, Default.aspx. 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 sensitve data is never actually within the source document in a format that a web bot can grab.

Lets 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 its the most obvious form of data that should be kept private.

The attached project contains a single page, which has 4 text fields on it.

 

What Do You Think ?

Thats 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. Thanks

v1.0 30/01/07 : Initial Issue

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralMy vote of 1 Pin
GUI Developer
7:47 21 Dec '08  
QuestionObfuscation of email addresses in normal HTML pages Pin
pcug
23:54 5 Nov '08  
AnswerRe: Obfuscation of email addresses in normal HTML pages Pin
Sacha Barber
2:25 6 Nov '08  
GeneralThank you Pin
JaECH
6:08 11 Jun '08  
GeneralRe: Thank you Pin
Sacha Barber
7:15 11 Jun '08  
Questionwhy response raw email when client doesn't support Javascript? Pin
17:00 7 Feb '07  
AnswerRe: why response raw email when client doesn't support Javascript? Pin
Sacha Barber
22:47 7 Feb '07  
Generalhow to open this web based system? Pin
zixlea
8:06 5 Feb '07  
GeneralRe: how to open this web based system? Pin
Sacha Barber
23:57 5 Feb '07  
GeneralNice Pin
The .NET Junkie
12:01 30 Jan '07  
GeneralRe: Nice Pin
Sacha Barber
23:05 30 Jan '07  
GeneralObfuscation Pin
Jan Seda
4:52 30 Jan '07  
GeneralRe: Obfuscation Pin
Sacha Barber
7:47 30 Jan '07  
GeneralRe: Obfuscation Pin
Jan Seda
7:49 30 Jan '07  
GeneralRe: Obfuscation Pin
Sacha Barber
8:56 30 Jan '07  
GeneralRe: Obfuscation Pin
Sacha Barber
8:48 1 Feb '07  
GeneralRe: Obfuscation Pin
Jan Seda
2:36 2 Feb '07  
GeneralRe: Obfuscation Pin
Sacha Barber
23:22 2 Feb '07  
GeneralRe: Obfuscation Pin
Sacha Barber
22:57 12 Feb '07  
GeneralRe: Obfuscation Pin
Jan Seda
6:53 15 Feb '07  
GeneralRe: Obfuscation Pin
Sacha Barber
8:02 15 Feb '07  
GeneralRe: Obfuscation Pin
Sacha Barber
0:21 1 Mar '07  


Last Updated 30 Jan 2007 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009