C
cameron
I have attempted to lock down the trace.axd file with the standard:
<location path="trace.axd">
<system.web>
<authorization>
<allow roles="SOME GROUP"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
in my webconfig file. And it works fine if I go to <my URL>/trace.axd
but one of my colleges mistyped the URL <my URL>/SOME SUB
DIRECTORY/trace.axd and got the trace. We have been playing with it and
every single subdirectory will display the trace.axd. We have tried
<location path="*/trace.axd">
<location path="//trace.axd">
<location path="*.axd">
And a stack of variations there of but it is not happy. Does anyone know
how to lock down the trace.axd, no matter what subdirectory you are in?
Thanks
-Cam
<location path="trace.axd">
<system.web>
<authorization>
<allow roles="SOME GROUP"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
in my webconfig file. And it works fine if I go to <my URL>/trace.axd
but one of my colleges mistyped the URL <my URL>/SOME SUB
DIRECTORY/trace.axd and got the trace. We have been playing with it and
every single subdirectory will display the trace.axd. We have tried
<location path="*/trace.axd">
<location path="//trace.axd">
<location path="*.axd">
And a stack of variations there of but it is not happy. Does anyone know
how to lock down the trace.axd, no matter what subdirectory you are in?
Thanks
-Cam