Ask a Question related to ASP.NET Security, Design and Development.
-
Sanjay Poojari #1
Security Issues with ASP.Net
Hi All,
Need some advice on some of the security issues in my ASP.Net application.
There are certain tasks that I need to implement so need advice/guidance on
them as well as safeguards that I should implement. The application would
be typically running on Windows Server 2003 with IIS6 with .Net framework
1.1
1. My application saves its settings to the registry. I know that by
default the Aspnet user does not have rights to edit the registry. My
Workaround is that I changed the user in processmodel from "machine" to
"SYSTEM" in the machine.config file. Also in case of 2003 Server, I have to
explicitly grant full rights to the aspnet user to the registry.
Somehow I feel that this solution is not a good one and has the potential
for making the web server unsafe. Any other solutions/workarounds for this
problem?
2. My application needs to read/write/create directories from the file
system on the webserver. I have to explicitly grant the aspnet user full
access to the directories in question. Any other elegant solution to this
issue?
Also, in Windows Server 2003, this does not work if the directory is located
inside the "Program Files" directory. Does not work even when the aspnet
user is added to the Administrators group. Why could this be happening?
Any suggestions/pointers would be appreciated.
Thanks in advance,
Sanjay
Sanjay Poojari Guest
-
Administering Security Issues
I installed a J2EE Configuration of 6.1 30 day trial on top of unmodified perms IIS 6/W2k3. I entered a required password to administering CF and... -
asp.net + unmanaged dll security issues
Hi, I'm developing an ASP.NET application. I imported a C++ dll into the C# code. When I tried to access a function in that dll, application threw... -
Security issues
http://tinyurl.com/2dlhq -- Ivan "Doomer" Carlos - Cell.: +55 (11) 8112-0666 icarlos@icarlos.net www.icarlos.net - -
Database Security Issues
I'm helping someone to create an online database. All is fine and good except for one problem. Here it is: In order to provide connectivity to... -
Summary of security issues?
I am wondering if there is any place that contains an (up to date) summary of security issues with various software browseable by program name and... -
Sanjay Poojari #2
Security Issues with ASP.Net
Hi All,
Need some advice on some of the security issues in my ASP.Net application.
There are certain tasks that I need to implement so need advice/guidance on
them as well as safeguards that I should implement. The application would
be typically running on Windows Server 2003 with IIS6 with .Net framework
1.1
1. My application saves its settings to the registry. I know that by
default the Aspnet user does not have rights to edit the registry. My
Workaround is that I changed the user in processmodel from "machine" to
"SYSTEM" in the machine.config file. Also in case of 2003 Server, I have to
explicitly grant full rights to the aspnet user to the registry.
Somehow I feel that this solution is not a good one and has the potential
for making the web server unsafe. Any other solutions/workarounds for this
problem?
2. My application needs to read/write/create directories from the file
system on the webserver. I have to explicitly grant the aspnet user full
access to the directories in question. Any other elegant solution to this
issue?
Also, in Windows Server 2003, this does not work if the directory is located
inside the "Program Files" directory. Does not work even when the aspnet
user is added to the Administrators group. Why could this be happening?
Any suggestions/pointers would be appreciated.
Thanks in advance,
Sanjay
Sanjay Poojari Guest
-
Kevin Spencer #3
Re: Security Issues with ASP.Net
Most executable programs you run use the local System account to run.
ASP.Net is no different. There is no Security risk unless some hostile
person can somehow take control of your ASP.Net app. The aspnet user account
is more useful if you are, for example, a hosting service, and of course,
you don't want to grant blanket access to the entire machine to all of your
hosting clients.
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of little things.
"Sanjay Poojari" <sanjay@rheal.com> wrote in message
news:%23Hds2q3TDHA.1624@TK2MSFTNGP11.phx.gbl...on> Hi All,
>
> Need some advice on some of the security issues in my ASP.Net application.
> There are certain tasks that I need to implement so need advice/guidanceto> them as well as safeguards that I should implement. The application would
> be typically running on Windows Server 2003 with IIS6 with .Net framework
> 1.1
>
> 1. My application saves its settings to the registry. I know that by
> default the Aspnet user does not have rights to edit the registry. My
> Workaround is that I changed the user in processmodel from "machine" to
> "SYSTEM" in the machine.config file. Also in case of 2003 Server, I havethis> explicitly grant full rights to the aspnet user to the registry.
>
> Somehow I feel that this solution is not a good one and has the potential
> for making the web server unsafe. Any other solutions/workarounds forlocated> problem?
>
> 2. My application needs to read/write/create directories from the file
> system on the webserver. I have to explicitly grant the aspnet user full
> access to the directories in question. Any other elegant solution to this
> issue?
>
> Also, in Windows Server 2003, this does not work if the directory is> inside the "Program Files" directory. Does not work even when the aspnet
> user is added to the Administrators group. Why could this be happening?
>
> Any suggestions/pointers would be appreciated.
>
> Thanks in advance,
> Sanjay
>
>
Kevin Spencer Guest
-
Kevin Spencer #4
Re: Security Issues with ASP.Net
Most executable programs you run use the local System account to run.
ASP.Net is no different. There is no Security risk unless some hostile
person can somehow take control of your ASP.Net app. The aspnet user account
is more useful if you are, for example, a hosting service, and of course,
you don't want to grant blanket access to the entire machine to all of your
hosting clients.
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of little things.
"Sanjay Poojari" <sanjay@rheal.com> wrote in message
news:%23Hds2q3TDHA.1624@TK2MSFTNGP11.phx.gbl...on> Hi All,
>
> Need some advice on some of the security issues in my ASP.Net application.
> There are certain tasks that I need to implement so need advice/guidanceto> them as well as safeguards that I should implement. The application would
> be typically running on Windows Server 2003 with IIS6 with .Net framework
> 1.1
>
> 1. My application saves its settings to the registry. I know that by
> default the Aspnet user does not have rights to edit the registry. My
> Workaround is that I changed the user in processmodel from "machine" to
> "SYSTEM" in the machine.config file. Also in case of 2003 Server, I havethis> explicitly grant full rights to the aspnet user to the registry.
>
> Somehow I feel that this solution is not a good one and has the potential
> for making the web server unsafe. Any other solutions/workarounds forlocated> problem?
>
> 2. My application needs to read/write/create directories from the file
> system on the webserver. I have to explicitly grant the aspnet user full
> access to the directories in question. Any other elegant solution to this
> issue?
>
> Also, in Windows Server 2003, this does not work if the directory is> inside the "Program Files" directory. Does not work even when the aspnet
> user is added to the Administrators group. Why could this be happening?
>
> Any suggestions/pointers would be appreciated.
>
> Thanks in advance,
> Sanjay
>
>
Kevin Spencer Guest
-
Sanjay Poojari #5
Re: Security Issues with ASP.Net
Thanks Kevin!
Sanjay
"Kevin Spencer" <kevin@takempis.com> wrote in message
news:#clt4Q4TDHA.1864@TK2MSFTNGP11.phx.gbl...> Most executable programs you run use the local System account to run.
> ASP.Net is no different. There is no Security risk unless some hostile
Sanjay Poojari Guest
-
Sanjay Poojari #6
Re: Security Issues with ASP.Net
Thanks Kevin!
Sanjay
"Kevin Spencer" <kevin@takempis.com> wrote in message
news:#clt4Q4TDHA.1864@TK2MSFTNGP11.phx.gbl...> Most executable programs you run use the local System account to run.
> ASP.Net is no different. There is no Security risk unless some hostile
Sanjay Poojari Guest



Reply With Quote

