Ask a Question related to ASP.NET Security, Design and Development.
-
Tim Wood #1
How secure are appsettings in web.config?
Just wondering how safe it is to include sensitive information such as a
database connection string in web.config.
Tim Wood Guest
-
Web.Config and appSettings tag
I am storing a database connection string in a key/value pair in the appSettings tag of the web.config file as follows: <appSettings> <add... -
How: Ampersand in AppSettings value??
I am wondering how i can put an ampersand character into the value attribute of a key in the appSettings section of my web.config file. If i try to... -
Intermittent problem reading appSettings in Web.Config
Are you positive this is a web config issue? You yourself say you don't know what is being returned. When you resave web.config, this restarts... -
appSettings problem!
Hello! I have one problem with the appSettings on win2k srv machine with framework 1.1. Following line not work anymore (it worked fine with... -
ConfigurationSettings.AppSettings Error
Hello Chris, When you are experiencing this problem? What are you including in the AppSettings Config file. Are you using long string? What... -
Cowboy \(Gregory A. Beamer\) #2
Re: How secure are appsettings in web.config?
In theory, very safe, as the config file is tied to the ASP.NET runtime. In
reality, who knows? Hackers are going to look for this type of information
and it is open text (in the 1.0/1.1 framework, at least). I would encrypt;
there are some good articles on MSDN for using the machine key to encrypt
secrets. In fact, the [url]http://msdn.microsoft.com/architecture[/url] site has a
treasure trove of books on a variety of topics.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
************************************************** ********************
Think Outside the Box!
************************************************** ********************
"Tim Wood" <tww@nomail.com> wrote in message
news:u3g$sB2sDHA.2380@TK2MSFTNGP09.phx.gbl...> Just wondering how safe it is to include sensitive information such as a
> database connection string in web.config.
>
>
Cowboy \(Gregory A. Beamer\) Guest



Reply With Quote

