5,696,038 members and growing! (11,372 online)
Email Password   helpLost your password?
Web Development » Web Security » Security     Intermediate

Encrypt Password Field in SQL Server, Registry Information & Query String

By Syed Adnan Ahmed

How to encrypt the database password field, registry information and query string.
VB.NET 1.0, Win2K, WinXP, Windows, .NET, ASP.NET, Visual Studio, Dev

Posted: 13 Jan 2003
Updated: 13 Jan 2003
Views: 214,162
Bookmarked: 83 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
32 votes for this Article.
Popularity: 5.50 Rating: 3.65 out of 5
4 votes, 12.5%
1
2 votes, 6.3%
2
4 votes, 12.5%
3
9 votes, 28.1%
4
13 votes, 40.6%
5

Introduction

Normally, web developers do not take keen interest to secure the query string and connection string information which usually reside in the registry and the user passwords which reside in the user registration database table. When I was creating a web-based application in ASP.NET, I decided to use these three encryptions to fully secure my application.

.NET provides us the new Cryptography classes to encrypt and decrypt the data whenever used.

I would like to discuss these three issues one by one.

Encrypt Password field in SQL Server

This is the a common practice of developers, not to encrypt the user-login passwords in the database table fields. If anyone has access to the database tables, he can easily use these passwords to enter into the site anytime. So to avoid this situation, I used, .NET’s Cryptography classes.

The business logic which I used is that, when a user is added through my web application, on form submit event, I first get the user’s information from the form fields, encrypt the employee’s password and then submit the entire information into the user registration table. The password information is encrypted in the user registration table. Now, when the user enter into the application, provides userid and password, I just encrypt the user provided password and match it with the employee table’s password, so I don’t need to decrypt the database stored password again and again.

Encrypt Registry Information in SQL Server

Typically, most of the developers including me think that the windows registry is the best place to store key information like connection strings. But these information in the registry are not encrypted and if anyone has access to the server he can easily get all the secure information including the database passwords etc. To avoid this situation also, I use .NET’s Cryptography classes to save the key information residing in the registry.

Encrypt Query String

Often developers pass information from one page to another by using query string, without encrypting those sort of information. Let’s take a scenario where (e.g. it is necessary to encrypt the information contained in the query) I pass the area name (e.g. TownId) from one to another page and on the basis of that TownId I want to get some information from the database. If the user change the TownId in the address bar of the browser and refresh the web page, then this changed TownId will pass and the information related to the users changed TownId will be viewed. So by doing this, the user is able to get all the towns' information whether he has access to all the other towns' information or not.

By the .NET’s Cryptography classes, we can send these information first by encrypting and after receiving, do the reverse process, i.e. to decrypt and use that information.

I have made a class named Utilities and imported the following classes,

Imports System
Imports System.IO
Imports System.Xml
Imports System.Text
Imports System.Security.Cryptography

Two public shared functions named EncryptText and DecryptText with one argument of type string are made.

From an ASP.NET page, just provide the text that you want to encrypt/decrypt into this function and it will return you an encrypted/decrypted text depending upon the function you use.

The EncryptText function internally uses the Encrypt function which uses two parameters: one is the user’s text and other is the encryption which must be on eight digit code. Same as the case for DecryptText function, it uses Decrypt function.

The source code for the function is given below:

' Encrypt the text

 Public Shared Function EncryptText(ByVal strText As String) As String
            Return Encrypt(strText, “&%#@?,:*")
 End Function

'Decrypt the text 
Public Shared Function DecryptText(ByVal strText As String) As String
            Return Decrypt(strText, "&%#@?,:*")
End Function

'The function used to encrypt the text
Private Shared Function Encrypt(ByVal strText As String, ByVal strEncrKey _ 
         As String) As String
      Dim byKey() As Byte = {}
      Dim IV() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF}
   
  Try
      byKey()  = System.Text.Encoding.UTF8.GetBytes(Left(strEncrKey, 8))
      
      Dim des As New DESCryptoServiceProvider()
      Dim inputByteArray() As Byte = Encoding.UTF8.GetBytes(strText)
      Dim ms As New MemoryStream()
      Dim cs As New CryptoStream(ms, des.CreateEncryptor(byKey, IV),_
                   CryptoStreamMode.Write)
                cs.Write(inputByteArray, 0, inputByteArray.Length)
                cs.FlushFinalBlock()
                Return Convert.ToBase64String(ms.ToArray())
                
  Catch ex As Exception
                Return ex.Message
  End Try
  
End Function
 
'The function used to decrypt the text
Private Shared Function Decrypt(ByVal strText As String, ByVal sDecrKey _ 
           As String) As String
     Dim byKey() As Byte = {}
     Dim IV() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF}
     Dim inputByteArray(strText.Length) As Byte
      
  Try
        byKey = System.Text.Encoding.UTF8.GetBytes(Left(sDecrKey, 8))
                Dim des As New DESCryptoServiceProvider()
                inputByteArray = Convert.FromBase64String(strText)
                Dim ms As New MemoryStream()
                Dim cs As New CryptoStream(ms, des.CreateDecryptor(byKey,_ 
                 IV), CryptoStreamMode.Write)
 
                cs.Write(inputByteArray, 0, inputByteArray.Length)
                cs.FlushFinalBlock()
          Dim encoding As System.Text.Encoding = System.Text.Encoding.UTF8
         
       Return encoding.GetString(ms.ToArray())
       
    Catch ex As Exception
       Return ex.Message
    End Try
    
End Function

Conclusion

I have shown here the three main areas where you should use encryption mechanism to secure your web-application. If you have any query or difficulty to implement it, please feel free to email me at: adnanahmed235@yahoo.com.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Syed Adnan Ahmed


Adnan Ahmed is a Senior MS Solutions Consultant, working with all major versions of SharePoint and its various complimentary technologies (Project Server, CMS, and K2) has been both enthused and frustrated by the capabilities for over 6 years now.

Adnan, based in Ireland, works for one of the largest IT Company in Ireland and has worked with many large enterprises to help them realise real benefits from adopting and integrating the SharePoint platform. Microsoft Certified Technology Specialist (MCTS) for SharePoint, MCSD.NET

Email: adnan@projectservergurus.com
Owner: http://www.projectservergurus.com
My Blogs:
Project Server: http://www.projectservergurus.com/adnan
SharePoint:
http://www.sharepointblogs.com/adnan

Occupation: Web Developer
Location: Ireland Ireland

Other popular Web Security articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 56 (Total in Forum: 56) (Refresh)FirstPrevNext
QuestionErrormembermrichar37:30 14 Nov '08  
AnswerRe: Errormembermrichar35:37 17 Nov '08  
GeneralThank youmemberm-chaos17:59 18 Feb '08  
GeneralErrormemberNaderrafiee22:47 6 Jan '08  
GeneralTwo other related encryption articles in CodeProject ...memberTony Selke7:56 27 Sep '07  
GeneralExcellent CodememberSeaCrab6:57 25 Jun '07  
QuestionEncrypt and Decrypt in ASP.NET using C#membersssabi2:14 16 May '07  
AnswerRe: Encrypt and Decrypt in ASP.NET using C#memberbyterman2k13:42 5 Jul '07  
GeneralRe: Encrypt and Decrypt in ASP.NET using C#memberNarind3r6:17 7 Aug '07  
GeneralRe: Encrypt and Decrypt in ASP.NET using C#memberfabrizio.magosso3:20 23 Oct '07  
QuestionQuerystring issuememberinspoiehfkdbc6:46 26 Apr '07  
GeneralRe: Querystring issuememberstixoffire0:23 2 Apr '08  
GeneralGreat job, worked the first timememberjohndsc1:18 23 Mar '07  
GeneralPretty good one.memberr_maiya8:50 19 Mar '07  
GeneralGood one!memberCharuT20:05 8 Nov '06  
GeneralRe: Good one!memberCharuT20:24 8 Nov '06  
GeneralProblems about RSA Password encryptionmemberpuriamrik3:47 10 Oct '06  
GeneralYou made a excellent jobmemberbritneyssssers11:32 29 Aug '06  
Generalthanksmemberyusufziya1:04 10 Aug '06  
QuestionCan you call this from SQL?memberja92812:41 2 Aug '06  
GeneralTanxmemberGayuDam1:20 23 Jun '06  
Generalnice codemembertjandrasa10:26 18 Jan '06  
GeneralWhere to store the key?membermpvbrao2:43 29 Jul '05  
GeneralRe: Where to store the key?memberstixoffire17:30 12 Jul '06  
GeneralRe: Where to store the key?membermpvbrao4:03 14 Jul '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 13 Jan 2003
Editor: Smitha Vijayan
Copyright 2003 by Syed Adnan Ahmed
Everything else Copyright © CodeProject, 1999-2008
Web12 | Advertise on the Code Project