Ask a Question related to ASP.NET Security, Design and Development.
-
Mark A. Richman #1
EventLogPermission via caspol.exe
I am getting an EventLogPermission exception when calling my assembly from an ASP.NET 2.0 app. I tried setting the assembly to FullTrust via caspol.exe, but I still get this exception. Any ideas? I am loading the web app and assemblies over UNC.
--
MARK RICHMAN
Mark A. Richman Guest
-
caspol execution with cmd file error
When i open a cmd window and i tape : caspol -s off -> OK I write a file .cmd with "caspol -s off" When i execute this file .cmd : -> Error :... -
caspol & local intranet security
Hi We have built an aspnet application which uses a windows user control embedded in an object tag. The app is to be deployed on a large client... -
Aleksandr Sliborsky #2
RE: EventLogPermission via caspol.exe
"Mark A. Richman" wrote:
Do you use Code Access Security?> I am getting an EventLogPermission exception when calling my assembly from an ASP.NET 2.0 app. I tried setting the assembly to FullTrust via caspol.exe, but I still get this exception. Any ideas? I am loading the web app and assemblies over UNC.
> --
> MARK RICHMAN
May be in some place of Your code You use it declarative.
And You declared that only som signed assemblies can acces Your assembly.
Oh may be You have to use impersonatino because ASP.NET host application
has;t any gihts to access to event log...
Aleksandr Sliborsky
Aleksandr Sliborsky Guest
-
Nicole Calinoiu #3
Re: EventLogPermission via caspol.exe
Mark,
What trust level is set for ASP.NET on your machine? (You can check this is
in the %WINDIR%\Microsoft.NET\Framework\v2.0.<build>\CONF IG\web.config
file.) If it's not full trust, then you'll need to ensure that both your
ASP.NET application and your other assembly are granted the necessary
EventLogPermission under the policy specified in the appropriate
web_<level>trust.config file.
That said, writing to the event log from a web application is not
necessarily such a wonderful idea in the first place. If feasible, it might
be a better solution to log to a different target rather than adjusting your
application's permissions to allow writing to the event log.
HTH,
Nicole
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:eGzLovqSFHA.3640@TK2MSFTNGP14.phx.gbl...> I am getting an EventLogPermission exception when calling my assembly from
> an ASP.NET 2.0 app. I tried setting the assembly to FullTrust via
> caspol.exe, but I still get this exception. Any ideas? I am loading the
> web app and assemblies over UNC.
--
MARK RICHMAN
Nicole Calinoiu Guest
-
Mark A. Richman #4
Re: EventLogPermission via caspol.exe
Nicole,
Firstly, I am not attempting to log from ASP.NET directly, but from a dependent assembly (albeit in the same process space - effectively the same thing, I assume). I am loading the web app and assemblies over UNC. I am also impersonating a Domain Admin account in my web.config. My trust level is the default setting of "Full". I have tried various caspol commands such as "caspol -m -fulltrust \\mydomain\dfsroot\dfslink\myapp\bin\myassembly.dl l" with no luck.
The full stack trace is as follows (with real names obscured to protect the innocent):
System.Security.SecurityException: Request for the permission of type 'System.Diagnostics.EventLogPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
at System.Security.CodeAccessSecurityEngine.Check(Per missionToken permToken, CodeAccessPermission demand, StackCrawlMark& stackMark, Int32 checkFrames, Int32 unrestrictedOverride)
at System.Security.CodeAccessSecurityEngine.Check(Cod eAccessPermission cap, StackCrawlMark& stackMark)
at System.Security.CodeAccessPermission.Demand()
at System.Diagnostics.EventLog.SourceExists(String source, String machineName)
at System.Diagnostics.EventLog.SourceExists(String source)
at MyException..ctor(Object oSource, Int32 nCode, String sMessage, Exception oInnerException, Boolean bLog)
at MyAssembly.Foo() in \\mydomain\dfsroot\dfslink\myapp\App_Code\Blah.cs: line 125
Thank you so much!
--
Mark A. Richman
"Nicole Calinoiu" <calinoiu REMOVETHIS AT gmail DOT com> wrote in message news:u5d9fJySFHA.140@TK2MSFTNGP10.phx.gbl...
Mark,
What trust level is set for ASP.NET on your machine? (You can check this is
in the %WINDIR%\Microsoft.NET\Framework\v2.0.<build>\CONF IG\web.config
file.) If it's not full trust, then you'll need to ensure that both your
ASP.NET application and your other assembly are granted the necessary
EventLogPermission under the policy specified in the appropriate
web_<level>trust.config file.
That said, writing to the event log from a web application is not
necessarily such a wonderful idea in the first place. If feasible, it might
be a better solution to log to a different target rather than adjusting your
application's permissions to allow writing to the event log.
HTH,
Nicole
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:eGzLovqSFHA.3640@TK2MSFTNGP14.phx.gbl...> I am getting an EventLogPermission exception when calling my assembly from
> an ASP.NET 2.0 app. I tried setting the assembly to FullTrust via
> caspol.exe, but I still get this exception. Any ideas? I am loading the
> web app and assemblies over UNC.
--
MARK RICHMAN
Mark A. Richman Guest
-
Nicole Calinoiu #5
Re: EventLogPermission via caspol.exe
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:uT1dDyySFHA.2324@TK2MSFTNGP10.phx.gbl...Pretty much. When EventLogPermission is demanded from within the .NET> Nicole,
>
> Firstly, I am not attempting to log from ASP.NET directly, but from a
> dependent assembly (albeit in the same process space - effectively the
> same thing, I assume).
Framework code you are calling, both the ASP.NET application and your
intermediary assembly must have the permission in order for the demand to
pass (at least under "usual" circumstances).
That's extremely risky. Are you doing this simply for troubleshooting> I am loading the web app and assemblies over UNC.
> I am also impersonating a Domain Admin account in my web.config.
purposes, or do you plan to run the application under an admin account in
production? If the latter, you may want to reconsider...
Chances are good that you're not creating quite the right policy changes> My trust
> level is the default setting of "Full". I have tried various caspol
> commands such as "caspol -m -fulltrust
> \\mydomain\dfsroot\dfslink\myapp\bin\myassembly.dl l" with no luck.
when using caspol. However, before attempting to troubleshoot your caspol
use, have you confirmed that the application runs as expected if the
assemblies reside on the local machine rather than elsewhere on the network?
at System.Security.CodeAccessSecurityEngine.Check(Per missionToken> The full stack trace is as follows (with real names obscured to protect
> the innocent):
>
> System.Security.SecurityException: Request for the permission of type
> 'System.Diagnostics.EventLogPermission, System, Version=2.0.0.0,
> Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
permToken, CodeAccessPermission demand, StackCrawlMark& stackMark, Int32
checkFrames, Int32 unrestrictedOverride)
at System.Security.CodeAccessSecurityEngine.Check(Cod eAccessPermission
cap, StackCrawlMark& stackMark)
at System.Security.CodeAccessPermission.Demand()
at System.Diagnostics.EventLog.SourceExists(String source, String
machineName)
at System.Diagnostics.EventLog.SourceExists(String source)
at MyException..ctor(Object oSource, Int32 nCode, String sMessage,
Exception oInnerException, Boolean bLog)
at MyAssembly.Foo() in
\\mydomain\dfsroot\dfslink\myapp\App_Code\Blah.cs: line 125
Thank you so much!
--
Mark A. Richman
"Nicole Calinoiu" <calinoiu REMOVETHIS AT gmail DOT com> wrote in message
news:u5d9fJySFHA.140@TK2MSFTNGP10.phx.gbl...
Mark,
What trust level is set for ASP.NET on your machine? (You can check this
is
in the %WINDIR%\Microsoft.NET\Framework\v2.0.<build>\CONF IG\web.config
file.) If it's not full trust, then you'll need to ensure that both your
ASP.NET application and your other assembly are granted the necessary
EventLogPermission under the policy specified in the appropriate
web_<level>trust.config file.
That said, writing to the event log from a web application is not
necessarily such a wonderful idea in the first place. If feasible, it
might
be a better solution to log to a different target rather than adjusting
your
application's permissions to allow writing to the event log.
HTH,
Nicole
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:eGzLovqSFHA.3640@TK2MSFTNGP14.phx.gbl...from> I am getting an EventLogPermission exception when calling my assembly> an ASP.NET 2.0 app. I tried setting the assembly to FullTrust via
> caspol.exe, but I still get this exception. Any ideas? I am loading the
> web app and assemblies over UNC.
--
MARK RICHMAN
Nicole Calinoiu Guest
-
Mark A. Richman #6
Re: EventLogPermission via caspol.exe
I moved my code off UNC to local disk (under c:\inetpub\wwwroot\myapp). I can still browse the .asmx's, but when I invoke any methods, I now get this error instead:
MyException: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
at Foo.Bar.Baz.MyMethod() in c:\Inetpub\wwwroot\myapp\Foo\App_Code\Blah.cs:line 125
The offending line simply calls into my assembly that I'd like to be fully trusted. The event log contains this entry as well: "The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)". This all works fine on my desktop machine from within Visual Studio 2005 Beta 2, so I know it's not my code, per se.
Thanks again,
Mark
"Nicole Calinoiu" <calinoiu REMOVETHIS AT gmail DOT com> wrote in message news:uR67Uz%23SFHA.2916@TK2MSFTNGP15.phx.gbl...
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:uT1dDyySFHA.2324@TK2MSFTNGP10.phx.gbl...Pretty much. When EventLogPermission is demanded from within the .NET> Nicole,
>
> Firstly, I am not attempting to log from ASP.NET directly, but from a
> dependent assembly (albeit in the same process space - effectively the
> same thing, I assume).
Framework code you are calling, both the ASP.NET application and your
intermediary assembly must have the permission in order for the demand to
pass (at least under "usual" circumstances).
That's extremely risky. Are you doing this simply for troubleshooting> I am loading the web app and assemblies over UNC.
> I am also impersonating a Domain Admin account in my web.config.
purposes, or do you plan to run the application under an admin account in
production? If the latter, you may want to reconsider...
Chances are good that you're not creating quite the right policy changes> My trust
> level is the default setting of "Full". I have tried various caspol
> commands such as "caspol -m -fulltrust
> \\mydomain\dfsroot\dfslink\myapp\bin\myassembly.dl l" with no luck.
when using caspol. However, before attempting to troubleshoot your caspol
use, have you confirmed that the application runs as expected if the
assemblies reside on the local machine rather than elsewhere on the network?
at System.Security.CodeAccessSecurityEngine.Check(Per missionToken> The full stack trace is as follows (with real names obscured to protect
> the innocent):
>
> System.Security.SecurityException: Request for the permission of type
> 'System.Diagnostics.EventLogPermission, System, Version=2.0.0.0,
> Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
permToken, CodeAccessPermission demand, StackCrawlMark& stackMark, Int32
checkFrames, Int32 unrestrictedOverride)
at System.Security.CodeAccessSecurityEngine.Check(Cod eAccessPermission
cap, StackCrawlMark& stackMark)
at System.Security.CodeAccessPermission.Demand()
at System.Diagnostics.EventLog.SourceExists(String source, String
machineName)
at System.Diagnostics.EventLog.SourceExists(String source)
at MyException..ctor(Object oSource, Int32 nCode, String sMessage,
Exception oInnerException, Boolean bLog)
at MyAssembly.Foo() in
\\mydomain\dfsroot\dfslink\myapp\App_Code\Blah.cs: line 125
Thank you so much!
--
Mark A. Richman
"Nicole Calinoiu" <calinoiu REMOVETHIS AT gmail DOT com> wrote in message
news:u5d9fJySFHA.140@TK2MSFTNGP10.phx.gbl...
Mark,
What trust level is set for ASP.NET on your machine? (You can check this
is
in the %WINDIR%\Microsoft.NET\Framework\v2.0.<build>\CONF IG\web.config
file.) If it's not full trust, then you'll need to ensure that both your
ASP.NET application and your other assembly are granted the necessary
EventLogPermission under the policy specified in the appropriate
web_<level>trust.config file.
That said, writing to the event log from a web application is not
necessarily such a wonderful idea in the first place. If feasible, it
might
be a better solution to log to a different target rather than adjusting
your
application's permissions to allow writing to the event log.
HTH,
Nicole
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:eGzLovqSFHA.3640@TK2MSFTNGP14.phx.gbl...from> I am getting an EventLogPermission exception when calling my assembly> an ASP.NET 2.0 app. I tried setting the assembly to FullTrust via
> caspol.exe, but I still get this exception. Any ideas? I am loading the
> web app and assemblies over UNC.
--
MARK RICHMAN
Mark A. Richman Guest
-
Mark A. Richman #7
Re: EventLogPermission via caspol.exe
Okay I resolved the RPC Server error by changing my WMI code in that assembly to use \\.\root\microsoftiisv2 instead of the netbios name. So good so far running off local disk now....
However, moving the code back over to UNC produces this exception again:
System.Security.SecurityException: Request for the permission of type 'System.Diagnostics.EventLogPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
at System.Security.CodeAccessSecurityEngine.Check(Per missionToken permToken, CodeAccessPermission demand, StackCrawlMark& stackMark, Int32 checkFrames, Int32 unrestrictedOverride)
at System.Security.CodeAccessSecurityEngine.Check(Cod eAccessPermission cap, StackCrawlMark& stackMark)
at System.Security.CodeAccessPermission.Demand()
at System.Diagnostics.EventLog.SourceExists(String source, String machineName)
at System.Diagnostics.EventLog.SourceExists(String source)
at My Assembly's Code Here...
--
Mark A. Richman
"Mark A. Richman" <nospam@nospam.com> wrote in message news:unKluAOTFHA.2872@TK2MSFTNGP14.phx.gbl...
I moved my code off UNC to local disk (under c:\inetpub\wwwroot\myapp). I can still browse the .asmx's, but when I invoke any methods, I now get this error instead:
MyException: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
at Foo.Bar.Baz.MyMethod() in c:\Inetpub\wwwroot\myapp\Foo\App_Code\Blah.cs:line 125
The offending line simply calls into my assembly that I'd like to be fully trusted. The event log contains this entry as well: "The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)". This all works fine on my desktop machine from within Visual Studio 2005 Beta 2, so I know it's not my code, per se.
Thanks again,
Mark
"Nicole Calinoiu" <calinoiu REMOVETHIS AT gmail DOT com> wrote in message news:uR67Uz%23SFHA.2916@TK2MSFTNGP15.phx.gbl...
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:uT1dDyySFHA.2324@TK2MSFTNGP10.phx.gbl...Pretty much. When EventLogPermission is demanded from within the ..NET> Nicole,
>
> Firstly, I am not attempting to log from ASP.NET directly, but from a
> dependent assembly (albeit in the same process space - effectively the
> same thing, I assume).
Framework code you are calling, both the ASP.NET application and your
intermediary assembly must have the permission in order for the demand to
pass (at least under "usual" circumstances).
That's extremely risky. Are you doing this simply for troubleshooting> I am loading the web app and assemblies over UNC.
> I am also impersonating a Domain Admin account in my web.config.
purposes, or do you plan to run the application under an admin account in
production? If the latter, you may want to reconsider...
Chances are good that you're not creating quite the right policy changes> My trust
> level is the default setting of "Full". I have tried various caspol
> commands such as "caspol -m -fulltrust
> \\mydomain\dfsroot\dfslink\myapp\bin\myassembly.dl l" with no luck.
when using caspol. However, before attempting to troubleshoot your caspol
use, have you confirmed that the application runs as expected if the
assemblies reside on the local machine rather than elsewhere on the network?
at System.Security.CodeAccessSecurityEngine.Check(Per missionToken> The full stack trace is as follows (with real names obscured to protect
> the innocent):
>
> System.Security.SecurityException: Request for the permission of type
> 'System.Diagnostics.EventLogPermission, System, Version=2.0.0.0,
> Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
permToken, CodeAccessPermission demand, StackCrawlMark& stackMark, Int32
checkFrames, Int32 unrestrictedOverride)
at System.Security.CodeAccessSecurityEngine.Check(Cod eAccessPermission
cap, StackCrawlMark& stackMark)
at System.Security.CodeAccessPermission.Demand()
at System.Diagnostics.EventLog.SourceExists(String source, String
machineName)
at System.Diagnostics.EventLog.SourceExists(String source)
at MyException..ctor(Object oSource, Int32 nCode, String sMessage,
Exception oInnerException, Boolean bLog)
at MyAssembly.Foo() in
\\mydomain\dfsroot\dfslink\myapp\App_Code\Blah.cs: line 125
Thank you so much!
--
Mark A. Richman
"Nicole Calinoiu" <calinoiu REMOVETHIS AT gmail DOT com> wrote in message
news:u5d9fJySFHA.140@TK2MSFTNGP10.phx.gbl...
Mark,
What trust level is set for ASP.NET on your machine? (You can check this
is
in the %WINDIR%\Microsoft.NET\Framework\v2.0.<build>\CONF IG\web.config
file.) If it's not full trust, then you'll need to ensure that both your
ASP.NET application and your other assembly are granted the necessary
EventLogPermission under the policy specified in the appropriate
web_<level>trust.config file.
That said, writing to the event log from a web application is not
necessarily such a wonderful idea in the first place. If feasible, it
might
be a better solution to log to a different target rather than adjusting
your
application's permissions to allow writing to the event log.
HTH,
Nicole
"Mark A. Richman" <nospam@nospam.com> wrote in message
news:eGzLovqSFHA.3640@TK2MSFTNGP14.phx.gbl...from> I am getting an EventLogPermission exception when calling my assembly> an ASP.NET 2.0 app. I tried setting the assembly to FullTrust via
> caspol.exe, but I still get this exception. Any ideas? I am loading the
> web app and assemblies over UNC.
--
MARK RICHMAN
Mark A. Richman Guest
-
Mark A. Richman #8
Re: EventLogPermission via caspol.exe
A little update:
The problem was caused by my code being run over UNC vs. local disk. This has the net effect of applying the LocalIntranet_Zone code group as opposed to the My_Computer_Zone, if am correct. I altered the permission set on LocalIntranet_Zone from LocalIntranet to FullTrust and everything works. For production purposes, this may not be the best approach. Not only will my code by running over UNC, but so will my customers' code, and I don't want to grant their code more trust than is necessary (I'm a web hoster). Any suggestions?
Thanks,
Mark
Mark A. Richman Guest
-
Joe Kaplan \(MVP - ADSI\) #9
Re: EventLogPermission via caspol.exe
The generally accepted best way to do this would be to apply strong names to your assemblies so that you can grant them the specific policy settings they need based on their strong name key. You definitely don't want to grant the whole LocalIntranet_Zone these settings and you don't want to grant FullTrust if you can possibly avoid it.
You'll also need to be careful to make sure that the callers of this assembly have the required permissions as the method you are calling does a full demand which causes a full stack walk. Another approach to avoiding that issue would be to ensure that your assembly has permission to Assert and then Assert the permission before you call the method. The Assert will prevent the stack walk and will effectively grant your assembly the right to do the privileged operation, even if this caller doesn't.
Note that giving yourself Assert permissions is something you want to avoid if possible as well as it is a very "blunt instrument" and gives you a lot of power (with which comes great responsibility :) ).
Nicole will probably have some additional comments, but I hope that gets you started.
Joe K.
"Mark A. Richman" <nospam@nospam.com> wrote in message news:uqtWgOZTFHA.2420@TK2MSFTNGP12.phx.gbl...
A little update:
The problem was caused by my code being run over UNC vs. local disk. This has the net effect of applying the LocalIntranet_Zone code group as opposed to the My_Computer_Zone, if am correct. I altered the permission set on LocalIntranet_Zone from LocalIntranet to FullTrust and everything works. For production purposes, this may not be the best approach. Not only will my code by running over UNC, but so will my customers' code, and I don't want to grant their code more trust than is necessary (I'm a web hoster). Any suggestions?
Thanks,
Mark
Joe Kaplan \(MVP - ADSI\) Guest
-
Nicole Calinoiu #10
Re: EventLogPermission via caspol.exe
As Joe mentioned, using a new code group (preferably under the
LocalIntranet_Zone node) with a strong name membership condition would be
the typical way to handle this type of scenario. However, this is a
somewhat unusual thing to try with ASP.NET, and I'm not quite sure how it
might turn out, particularly in 2.0. If it doesn't work, a code group based
on a URL membership condition would be the next reasonable approach, but
you'll probably need to match the URI format being used by ASP.NET to
retrieve the assemblies, which might mean a bit of trial and error work.
That said, I still find the UNC approach to be a bit odd. Given the dynamic
compilation model used by ASP.NET, I suspect that you might encounter
performance consequences beyond the obvious initial hit. Also, the file
server adds an additional point of potential failure that might affect the
availability of your hosted applications. Why not simply copy the
assemblies to the web server rather than running over UNC?
>"Mark A. Richman" <nospam@nospam.com> wrote in message
>news:uqtWgOZTFHA.2420@TK2MSFTNGP12.phx.gbl...
>A little update:
>
>The problem was caused by my code being run over UNC vs. local disk. This
>has the net effect of applying the LocalIntranet_Zone code group as opposed
>to the My_Computer_Zone, if am correct. I altered the permission set on
>LocalIntranet_Zone from LocalIntranet to FullTrust and everything works.
>For production purposes, this may not be the best approach. Not only will
>my code by running over UNC, but so will my customers' code, and I don't
>want to grant their code more trust than is necessary (I'm a web hoster).
>Any suggestions?
>
>Thanks,
>Mark
Nicole Calinoiu Guest



Reply With Quote

