ASP Error 0126 include file not found, when using ".." in include file path

ASP Error 0126 include file not found, when using ".." in include file path

am 09.01.2007 19:43:37 von eric.goforth

Hello,

I have some server side includes on a Classic asp page that look
something like:











When we'd attempt to load the page it would give us a ASP Error 0126
include file not found error referring to ../includes/file8.asp.

I changed it to a /includes/file8.asp and the problem went away. I
don't really see what the advantage of having the .. in there, but we
have this type of syntax in a lot of other asp pages.

I can do a search and replace, but I'm wondering if there's some IIS
setting that will prevent the error from happening. I was thinking
that we should turn on directory browsing, but it was already on (this
is an internal test web site).

Could there be some kind of user permission issue? This is on a
freshly built from scratch test server. The web page hasn't really
changed much, not at all with regard to this include statement.

Thanks,
Eric

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 09.01.2007 19:51:08 von exjxw.hannivoort

Eric wrote on 09 jan 2007 in microsoft.public.inetserver.asp.general:

>
>

IMHO:

virtual including starts from the web root,
so ../ would go below the root, which should be impossible,
given the normal settings of IIS.

I heard that IIS6 was more strict in this in it's default settings.

Second:
Is this directory permitted to be accessed by the ASP default user?

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 09.01.2007 22:42:49 von Anthony Jones

"Eric" wrote in message
news:1168368217.846684.88180@i56g2000hsf.googlegroups.com...
> Hello,
>
> I have some server side includes on a Classic asp page that look
> something like:
>
>
>
>
>
>
>
>
>
>
>
> When we'd attempt to load the page it would give us a ASP Error 0126
> include file not found error referring to ../includes/file8.asp.
>
> I changed it to a /includes/file8.asp and the problem went away. I
> don't really see what the advantage of having the .. in there, but we
> have this type of syntax in a lot of other asp pages.
>
> I can do a search and replace, but I'm wondering if there's some IIS
> setting that will prevent the error from happening. I was thinking
> that we should turn on directory browsing, but it was already on (this
> is an internal test web site).
>
> Could there be some kind of user permission issue? This is on a
> freshly built from scratch test server. The web page hasn't really
> changed much, not at all with regard to this include statement.
>

IIS 6?

By default parent paths are disabled. You can open the application
properties on home directory tab click click configuration. On the App
Options of the configuration dialog enable parent paths.

However for security reason you would be better of modifying your pages to
use an absolute path in this instance.


> Thanks,
> Eric
>

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 10.01.2007 16:42:20 von eric.goforth

Anthony Jones wrote:
> "Eric" wrote in message
> news:1168368217.846684.88180@i56g2000hsf.googlegroups.com...
> > Hello,
> >
> > I have some server side includes on a Classic asp page that look
> > something like:
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > When we'd attempt to load the page it would give us a ASP Error 0126
> > include file not found error referring to ../includes/file8.asp.
> >
> > I changed it to a /includes/file8.asp and the problem went away. I
> > don't really see what the advantage of having the .. in there, but we
> > have this type of syntax in a lot of other asp pages.
> >
> > I can do a search and replace, but I'm wondering if there's some IIS
> > setting that will prevent the error from happening. I was thinking
> > that we should turn on directory browsing, but it was already on (this
> > is an internal test web site).
> >
> > Could there be some kind of user permission issue? This is on a
> > freshly built from scratch test server. The web page hasn't really
> > changed much, not at all with regard to this include statement.
> >
>
> IIS 6?
>
> By default parent paths are disabled. You can open the application
> properties on home directory tab click click configuration. On the App
> Options of the configuration dialog enable parent paths.
>
> However for security reason you would be better of modifying your pages to
> use an absolute path in this instance.
>
>

Well I changed the .. on the server side includes to use an absolute
path and it fixed it. I did a some further investigation and it turned
out this was only done in 5 places in the app. However, we DID have
parent paths enabled. I wrote earlier that we had directory browsing
turned on, when I meant parent paths. We do this because we use parent
paths elsewhere in our application.

The web page that was calling the server side include with the ".."
wasn't in the root directory, so this should have been valid, in
theory.

Like I said, I can't see any good reason to use the parent paths in
this case. It would be great if someone could point me at some MS
documentation where they spell out what setting would make it possible
for this to with IIS 6, or at least confirming that they don't allow
this any longer.

Thanks,
Eric

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 10.01.2007 17:27:28 von reb01501

Eric wrote:
>
> Like I said, I can't see any good reason to use the parent paths in
> this case. It would be great if someone could point me at some MS
> documentation where they spell out what setting would make it possible
> for this to with IIS 6, or at least confirming that they don't allow
> this any longer.
>
Parent paths work fine on our IIS6 server after enabling them.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 10.01.2007 20:47:48 von eric.goforth

Bob Barrows [MVP] wrote:
> Eric wrote:
> >
> > Like I said, I can't see any good reason to use the parent paths in
> > this case. It would be great if someone could point me at some MS
> > documentation where they spell out what setting would make it possible
> > for this to with IIS 6, or at least confirming that they don't allow
> > this any longer.
> >
> Parent paths work fine on our IIS6 server after enabling them.
>

On server side includes too?

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 10.01.2007 21:03:14 von Mike Brind

"Eric" wrote in message
news:1168458468.613736.217780@77g2000hsv.googlegroups.com...
>
> Bob Barrows [MVP] wrote:
>> Eric wrote:
>> >
>> > Like I said, I can't see any good reason to use the parent paths in
>> > this case. It would be great if someone could point me at some MS
>> > documentation where they spell out what setting would make it possible
>> > for this to with IIS 6, or at least confirming that they don't allow
>> > this any longer.
>> >
>> Parent paths work fine on our IIS6 server after enabling them.
>>
>
> On server side includes too?
>

The parent-paths issue is only relevant to the server-side.

-
Mike Brind

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 10.01.2007 21:56:56 von Dave Anderson

Mike Brind wrote:
>>> Parent paths work fine on our IIS6 server after enabling them.
>>
>> On server side includes too?
>
> The parent-paths issue is only relevant to the server-side.

Just a casual observation and a resulting question here. The term "include"
does seem the point of the question, not "server-side". So I am wondering --
are the things affected other than includes when parent paths are enabled?
Among the things that come to mind are Server.Execute() or Server.Transfer()
calls and paths to such things as .mdb files -- or the file system in
general.

Anyone know? I cannot find anything on MSDN but this:
http://msdn2.microsoft.com/en-us/library/ms524697.aspx, which does not
specify what is limited by a "path".



--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 10.01.2007 22:00:05 von eric.goforth

Mike Brind wrote:
> "Eric" wrote in message
> news:1168458468.613736.217780@77g2000hsv.googlegroups.com...
> >
> > Bob Barrows [MVP] wrote:
> >> Eric wrote:
> >> >
> >> > Like I said, I can't see any good reason to use the parent paths in
> >> > this case. It would be great if someone could point me at some MS
> >> > documentation where they spell out what setting would make it possible
> >> > for this to with IIS 6, or at least confirming that they don't allow
> >> > this any longer.
> >> >
> >> Parent paths work fine on our IIS6 server after enabling them.
> >>
> >
> > On server side includes too?
> >
>
> The parent-paths issue is only relevant to the server-side.
>
> -
> Mike Brind

Actually it wasn't the server side includes we were having problems
with, it was the virtual server side includes.

-Eric

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 10.01.2007 23:06:15 von Dave Anderson

Eric wrote:
> Actually it wasn't the server side includes we were having problems
> with, it was the virtual server side includes.

I don't think you can use .. in virtual="" paths. I don't remember that ever
being allowed.



--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.

Re: ASP Error 0126 include file not found, when using ".." in include file path

am 11.01.2007 08:38:51 von Robert Chapman

"Dave Anderson" wrote in message
news:%23$hfenPNHHA.1240@TK2MSFTNGP03.phx.gbl...
> Mike Brind wrote:
>>>> Parent paths work fine on our IIS6 server after enabling them.
>>>
>>> On server side includes too?
>>
>> The parent-paths issue is only relevant to the server-side.
>
> Just a casual observation and a resulting question here. The term
> "include" does seem the point of the question, not "server-side". So I am
> wondering -- are the things affected other than includes when parent
> paths are enabled? Among the things that come to mind are Server.Execute()
> or Server.Transfer() calls and paths to such things as .mdb files -- or
> the file system in general.
>
> Anyone know? I cannot find anything on MSDN but this:
> http://msdn2.microsoft.com/en-us/library/ms524697.aspx, which does not
> specify what is limited by a "path".
>
>

Mappath is affected. It seems that Server.Execute and Server.Transfer makke
implicit use of Server.Mappath to resolve the file path, so they are
affected too. If you try Server.Execute("../somefile.asp") when parent
paths are disabled, the error message is "The '..' characters are not
allowed in the Path parameter for the MapPath method."

--
Mike Brind