Possible IE 6 Bug - Differences Between Windows Explorer And IE

K

Kevin Watkins

Hi,

Apologies for cross posting like this, but I wasn't sure on the best
group to post to and I didn't receive much of a response to my
original email in microsoft.public.dotnet.framework.aspnet.security.
My application currently has a rather large security hole in it which
I need help with as soon as possible.

My original post can be found at
http://groups.google.co.uk/[email protected]

Basically the problem is a difference in behaviour between going to a
URL by loading up IE via its icon, and by going to a URL by typing it
into the Windows Explorer address bar.

My application uses ASP.NET. It records information in the Session
variable and uses forms authentication to log in. The code for a
simple test application to demonstrate all this is included in my
original post.

Firstly I go to my app by loading up IE by clicking its icon then
entering the URL in the address bar. I log in, then close the browser
window. If I then open a new instance of IE in the same way and go
back to the site I am logged out as you'd expect, because my session
has ended. Everything works correctly and I'm a happy bunny.

However, if I enter the URL into the address bar of a Windows Explorer
window (E.g. double click on 'My Computer' and use the window that
comes up) my site displays in the window. I log in, then close the
window. If I then enter the URL into another Windows Explorer address
bar, I haven't been logged out. My session remains and my forms
authentication still holds.

Looking into this further, I believe this is due to session cookies
being held in memory. When I load up IE I get an iexplore.exe process
showing in task manager. Presumably the session cookies are held in
the memory space of this process, so when I close my IE window, the
process ends, the cookies are destroyed and my session/authentication
is therefore lost.

However, when I enter the URL into Windows Explorer, it does not
launch an iexplore.exe process. I'm therefore guessing that the
session cookies are held in the memory space of explorer.exe. As this
process never ends, the session cookies never die and my
session/authentication information is never lost.

In a related issue, if I open a popup using JavaScript from my site
when it has been accessed via Windows Explorer, an iexplore.exe
process is launched for the new window. The session/authentication
information is not carried through to this new window, I'm guessing
because the in memory cookies aren't copied to the new process.

Now I hope I'm being a muppet and have not set up something correctly
in ASP.NET or IIS. I tried setting the cookieless property in the
sessionState node in Web.Config to true, but still had the problem. I
have tested the website locally and on three different remote servers.
I have tested this on XP and 2000 running IE6, and on 2000 running
IE5.5. The bug only seems to happen under IE5.5, which makes me think
it might be a bug in IE 6.

Has anyone experienced anything similar? I would be grateful for any
help in solving this problem, as currently I have a big security hole.
If a user enters my site via Windows Explorer and then doesn't log
out, then another user could come along, use their PC, go to my site
via Windows Explorer and obtain the previous user's access rights.

I currently have a JavaScript onunload to log the user out if the
window closes, but this is not 100% perfect and is certainly not
ideal! So any help would be really appreciated!!!

Thanks,

Kev

(e-mail address removed)
 
J

Jim Cheshire [MSFT]

Hi Kevin,

This is not a bug in any version of the browser. This is by-design. One
process cannot access the memory for another process. As you have seen,
when you browse a URL via a Windows Explorer window, it will browse that
URL via the explorer.exe process. If you then open a new window, it will
launch a new iexplore.exe process, and that iexplore.exe process cannot
access the memory space for the explorer.exe process.

There is a way that you can force the process to not cache credentials in
this scenario. Open an Explorer window and click on Tools, Folder Options.
Click the View tab and select the option to "Launch folder windows in a
separate process." After you check that, restart the computer. Now
credentials will no longer be cached after the Windows Explorer window is
closed and a new one opened.

Jim Cheshire, MCSE, MCSD [MSFT]
ASP.NET
Developer Support
(e-mail address removed)

This post is provided "AS-IS" with no warranties and confers no rights.

--------------------
 
K

Kevin Watkins

Hi Kevin,
This is not a bug in any version of the browser. This is by-design. One
process cannot access the memory for another process. As you have seen,
when you browse a URL via a Windows Explorer window, it will browse that
URL via the explorer.exe process. If you then open a new window, it will
launch a new iexplore.exe process, and that iexplore.exe process cannot
access the memory space for the explorer.exe process.

There is a way that you can force the process to not cache credentials in
this scenario. Open an Explorer window and click on Tools, Folder Options.
Click the View tab and select the option to "Launch folder windows in a
separate process." After you check that, restart the computer. Now
credentials will no longer be cached after the Windows Explorer window is
closed and a new one opened.

Hi,

Thanks for your reply. I have just tested this again under IE5.5 and I
get different behaviour. The 'Launch folder windows in a separate
process' isn't ticked, yet the credentials do not get cached when I
shut the Windows Explorer window with my site in.

I can understand this being by design, but may I ask what the
rationale is? The design appears to have changed from 5.5 to 6
according to my simple tests, and surely not launching an iexplore.exe
process from Windows Explorer makes everything less secure? (In that
another user could gain access to the PC and gain login credentials,
whereas they couldn't if an iexplore.exe was launched) Especially
seeing as this box is not ticked by default.

I'm still thinking there must be a solution to this though. I cannot
get all my users to tick that box, because most of them won't and
people may login using public computers anyway. Many other sites I use
on the internet don't suffer from this problem, so I'm assuming there
must be something I can do to my site to plug this security hole? Is
there anything you can think of that might help?

Thanks,

Kev
 
J

Jim Cheshire [MSFT]

Hi Kev,

I'm not sure why you would see different behavior between IE 5 and 6. You
might want to post this question in the IE Client newsgroup for input
there.

Jim Cheshire, MCSE, MCSD [MSFT]
ASP.NET
Developer Support
(e-mail address removed)

This post is provided "AS-IS" with no warranties and confers no rights.

--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,043
Latest member
CannalabsCBDReview

Latest Threads

Top