I recently added the Glimpse Debugger package to my project. This added a reference to the Glimpse dll, and modified some Web.Config.

I like my project as much the same as possible on my development and production environment.

So is it save/wise to deploy Glimpse to my production site, or should I create a different project (or create branch from my csproj file) to keep it only locally?

Stuff that I'm worried about include:

  • Performance
  • Security breaches
link|improve this question

feedback

2 Answers

up vote 15 down vote accepted

I believe if the cookie for Glimpse is not found it doesn't load or do anything so performance should be negligible. I'd get a second opinion on that one as I'm new to using it as well. Security wise you can just set a user restriction in the webconfig for the location of the glimpse path.

<location path="Glimpse.axd" >
    <system.web>
        <authorization>
            <allow users="Administrator" />
            <deny users="*" />
        </authorization>
    </system.web>
</location>

Or if there is an administrator role you could do it by role instead of user name.

You can also switch it off if you don't want to rely on just the presence of the cookie. This easily achieved through web.config transforms, I haven't tested the markup yet but something like this should work.

<glimpse enabled="false" xdt:Transform="SetAttributes">
</glimpse>
link|improve this answer
Hi Yarx, could you tell me where in the web.config this line goes? <glimpse on="false" xdt:Transform="SetAttributes"> </glimpse> – phreak3eb Apr 22 '11 at 15:16
1  
VS2010 has the ability to create what it calls "Transform Files" for your web.config file. And these are ran on your web.config file at build time in order to modify it in preparation for your target deployment based off of the the build configuration used. For example, if you are in release mode, it applies transformations from the web.release.config file. To get these files simply right click on web.config and choose Add Config Transforms There are many tutorials that explain how these files work, and the syntax to use. msdn.microsoft.com/en-us/library/dd465326.aspx – Yarx Apr 26 '11 at 16:04
Note that Glimpse/Config has been replaced with Glimpse.axd. – ckittel Aug 23 '11 at 21:22
Ahh, good call. I'll modify my answer :-) – Yarx Aug 24 '11 at 0:21
@Yarx I don't know if the attribute was (On) before but it's (enabled) in 0.86, so the transformation would be: <glimpse enabled="false" xdt:Transform="SetAttributes"> – Idrees Jan 6 at 12:57
show 1 more comment
feedback

Yarx is right on pretty much all fronts.

From a security perspective you could lock down the path using the method described. Only thing is, there are more URL end points that glimpse uses, so the rule would need to be something like "Glimpse/" (where * says anything can come before it and anything can come after it). Once this is in place, glimpse should be pretty locked down.

Also, if in the config, you used the transform that Yarx provided, glimpse will never load, even if you have the cookie turned on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.