Something to be aware of, as there's no authentication by default on routes.axd anyone can have a snoop a your route configuration, which may expose stuff you'd rather not people know.
My workaround is to add the following to the Web.Release.config transform
Something to be aware of, as there's no authentication by default on routes.axd anyone can have a snoop a your route configuration, which may expose stuff you'd rather not people know.
My workaround is to add the following to the Web.Release.config transform
Should this be added to the Nuget package? Alternatively, should
LogRoutesHandler
do a check oncontext.Request.IsLocal
and return a 404 if not?