Click here to Skip to main content
Licence CPOL
First Posted 25 Jun 2009
Views 5,761
Downloads 16
Bookmarked 5 times

Remove the security credentials from a connection string

By | 25 Jun 2009 | Article
This might save you 15 minutes and avoid the embarrasment of returning your 'sa' password to your customers along with an error message.

Introduction

This is a noddy app with a method to remove the security credentials from a database connection string.

Background

It's the sort of thing that you have to write over and over wherever you go and is always more time consuming than you would think.

Using the code

Feel free to use this - add more security qualifiers if you like too - at present, the example only hits user, uid, pwd, and password.

The main method is as follows - so no need to download the code:

string m_DatabaseConnectionString = 
  "Data Source=MYHAPPYHAPPYDB\\SQLEXPRESS;Initial Catalog=JoyJoy;user=sa;password=W@nk3r";

private string RemoveConnectionStringSecurity(string inString)
{
    string[] securityQualifiers = new string[] { "user", "uid", 
                                      "password", "pwd" };
    string retStr = m_DatabaseConnectionString;

    foreach (string qualifier in securityQualifiers)
    {
        if (retStr.IndexOf(qualifier + "=") > 0)
        {
        // Remove Security Qualifier
            try
            {
                retStr = retStr.Substring(0, 
                         retStr.ToLower().IndexOf(qualifier + "=") + 
                         qualifier.Length + 1)
                        + "*HIDDEN*"
                        + retStr.Substring
                        (
                            retStr.ToLower().IndexOf(qualifier + "="),
                            retStr.Length - retStr.ToLower().IndexOf(qualifier + "=")
                        ).Substring
                        (
                            retStr.Substring
                            (
                                retStr.ToLower().IndexOf(qualifier + "="),
                                retStr.Length - retStr.ToLower().IndexOf(qualifier + "=")
                            ).IndexOf(";")
                        );
            }
            catch
            {
            // Last element and no terminating ';'
                retStr = retStr.Substring(0, 
                  retStr.ToLower().IndexOf(qualifier + "=") + qualifier.Length + 1)
                  + "*HIDDEN*";
            }
        }
    }

    return inString.Replace(m_DatabaseConnectionString, retStr);
}

License

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

About the Author

Simon Tagg



United Kingdom United Kingdom

Member



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 PinmemberJoe Programm3r6:44 25 Jun '09  
QuestionWouldn't this have been easier? PinmemberJoe Programm3r6:43 25 Jun '09  
AnswerRe: Wouldn't this have been easier? PinmemberSimon Tagg23:07 25 Jun '09  
QuestionWouldn't DbConnectionStringBuilder be easier to use? PinmemberPeter Rosconi6:21 25 Jun '09  
AnswerRe: Wouldn't DbConnectionStringBuilder be easier to use? PinmemberSimon Tagg23:28 25 Jun '09  
GeneralMy vote of 1 PinmemberAndre Luiz V Sanches6:18 25 Jun '09  
GeneralRe: My vote of 1 PinmemberSimon Tagg23:09 25 Jun '09  

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.120517.1 | Last Updated 25 Jun 2009
Article Copyright 2009 by Simon Tagg
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid