Ask a Question related to ASP.NET Security, Design and Development.
-
Alain #1
Hosting security
Hello.
This is probably a well knows issue but I still cannot find a
solution.
I have noticed that it is possible to read web.config files inside
other directories on the same server simply opening them using a aspx
script.
This could allow my users to steal each other username and passwords.
What is the correct way to handle this problem?
Thanks
Alain Guest
-
Picture Hosting Security
What is the best software program that would give me the same functionality as www.wireimage.com where photographers can upload pictures to my site... -
Important: Web Hosting from $2.95/m - Reseller Hosting from $9.95/m
::*CRUCIAL PARADIGM *:: * AFFORDABLE, RELIABLE, PROFESSIONAL WEB SOLUTIONS *Linux Hosting * ' Compare Plans'... -
Security tool to check CGI scripts for security holes/vulnerabities
I'm searching for a good security tool that I can use regularly to scan all the programs/scripts in my web servers cgi-bin directory to identify... -
Security issues with Asp.Net in Shared Hosting Environments
Dear Asp.Net Security Community Over the last couple of months I have posted several items in the official Asp.Net website (www.asp.net) related... -
ASP.Net shared hosting & security
Hello. I'm trying to setup a Win2003 server for hosting ASP.Net Applications in a Shared Hosting enviroment. With the "old" ASP I created a... -
Chris Jackson #2
Re: Hosting security
First of all, it's best to encrypt your passwords in some way. Even better
is to store them in a database somewhere. The asp.net runtime will not post
a .config file back to the user, but it is vulnerable to being read by an
aspx script, which is intentional. If your server scripts couldn't read the
configuration, then the configuration wouldn't be very valuable. So, the
obvious solution is to not give your users access to drop their own scripts
onto your server - why would you have something like this enabled in the
first place?
--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
"Alain" <alain@camping.it> wrote in message
news:1078089d.0310080150.2dd4b748@posting.google.c om...> Hello.
>
> This is probably a well knows issue but I still cannot find a
> solution.
>
> I have noticed that it is possible to read web.config files inside
> other directories on the same server simply opening them using a aspx
> script.
> This could allow my users to steal each other username and passwords.
>
> What is the correct way to handle this problem?
>
> Thanks
Chris Jackson Guest
-
Alain #3
Re: Hosting security
> First of all, it's best to encrypt your passwords in some way. Even better
I know its intentional. That is exactly the problem.> is to store them in a database somewhere. The asp.net runtime will not post
> a .config file back to the user, but it is vulnerable to being read by an
> aspx script, which is intentional.
I work for a little service provider. Some of the user require the> why would you have something like this enabled in the
> first place?
possibility to run dynamic applications.
In the past the company relied on COM+ objects which loaded
configurations from external udl files. The udl files were not
readable in any way by the users.
Alain Guest
-
Lauchlan M #4
Re: Hosting security
> This is probably a well knows issue but I still cannot find a
In addition to the suggestion of encrypting username and passwords in the> solution.
>
> I have noticed that it is possible to read web.config files inside
> other directories on the same server simply opening them using a aspx
> script.
> This could allow my users to steal each other username and passwords.
web.config file, don't put them in the web.config file, but store them in a
database, and have the database password protected.
Lauchlan M
Lauchlan M Guest
-
Chris Jackson #5
Re: Hosting security
If your users have the ability to drop executable code in the same
application directory, there isn't much you can do. Anything that your
application can use to decrypt, their application can use to decrypt. Your
only hope is security through obscurity, which is not security at all. You
could try using the aspnet_setreg tool to encrypt, and you can try using a
database connection (which, if your application can use it, theirs can too)
so it's not quite as obvious, but what you are describing is a truly
unsecurable scenario that needs to be rearchitected. You may want to
consider using Windows authentication, if that is an option.
--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
"Alain" <alain@camping.it> wrote in message
news:1078089d.0310082332.6d29783b@posting.google.c om...better> > First of all, it's best to encrypt your passwords in some way. Evenpost> > is to store them in a database somewhere. The asp.net runtime will notan> > a .config file back to the user, but it is vulnerable to being read by>> > aspx script, which is intentional.
> I know its intentional. That is exactly the problem.
>>> > why would you have something like this enabled in the
> > first place?
> I work for a little service provider. Some of the user require the
> possibility to run dynamic applications.
> In the past the company relied on COM+ objects which loaded
> configurations from external udl files. The udl files were not
> readable in any way by the users.
Chris Jackson Guest
-
Dinis Cruz #6
Re: Hosting security
Dear Alain
The problems that you are describing are very real and Asp.Net by
default is vulnerable to them
The solution is to implement website isolation as described in this
article: "http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/windowsserver2003/plan/appisoa.asp"
I would also call to your attention the new Open source Security tool
that we (in ddplus)have published which allow you to test your server
agaist these (and other) security problems.
See this post for more details on ANSA (Asp.Net Security Analyser)
"http://groups.google.com/groups?q=asp.net+security+group:microsoft.public.d otnet.framework.aspnet.security&hl=en&lr=&ie=UTF-8&oe=UTF-8&group=microsoft.public.dotnet.framework.aspnet.s ecurity&selm=701fd6b6.0310072039.5820b34c%40postin g.google.com&rnum=2"
or go directly to it's GotDotNet workspace:
"http://www.gotdotnet.com/Community/Workspaces/workspace.aspx?id=36ae9a2c-8740-4b52-924e-320edf64fba5"
Hope this helps
Best regards
Dinis Cruz
..Net Security Consultant
DDPlus ([url]www.ddplus.net[/url])
[email]alain@camping.it[/email] (Alain) wrote in message news:<1078089d.0310080150.2dd4b748@posting.google. com>...> Hello.
>
> This is probably a well knows issue but I still cannot find a
> solution.
>
> I have noticed that it is possible to read web.config files inside
> other directories on the same server simply opening them using a aspx
> script.
> This could allow my users to steal each other username and passwords.
>
> What is the correct way to handle this problem?
>
> ThanksDinis Cruz Guest
-



Reply With Quote

