![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
We have our intranet website running on IIS 6.0 using SSL. On our application side, we have some code that goes to the \\Servername\DirectoryName\myFile.pdf and grabs the file for the user. Now the problem is with SSL. Everytime some user click on the link, they get Internet Explorer security message: You are about to leave the secure internet connection. It will be possible for others to view the information. Any idea\tips\tricks that we can find a work around on this other than requesting users to check the box that says, In future, do not show this warning? Help!!! SK |
#3
| |||
| |||
|
|
You would probably have better luck in an IIS group, but here it goes anyway... Have you considered making the PDF file accessible via the site so that it can be fetched via an HTTPS address? If you're dealing with a small number of fairly static files, copying the files to your site might be the best approach. If there are a large number of files to be referenced and/or they change often, you might want to consider setting up a virtual directory in your web application to point through to a share on the other server. This should allow you to create links that point to the virtual directory over HTTPS, avoiding the client-side problem entirely. If you decide to go this route, you should take a look at http://support.microsoft.com/kb/280383 for some of the potential gotchas. HTH, Nicole "SK" <SK (AT) discussions (DOT) microsoft.com> wrote in message news:CC2414DC-E478-4A70-AFDD-AA5823EBC505 (AT) microsoft (DOT) com... We have our intranet website running on IIS 6.0 using SSL. On our application side, we have some code that goes to the \\Servername\DirectoryName\myFile.pdf and grabs the file for the user. Now the problem is with SSL. Everytime some user click on the link, they get Internet Explorer security message: You are about to leave the secure internet connection. It will be possible for others to view the information. Any idea\tips\tricks that we can find a work around on this other than requesting users to check the box that says, In future, do not show this warning? Help!!! SK |
#4
| |||
| |||
|
|
Thread-Topic: Annoying: You are about to leave secure internet connection thread-index: AcUSycYByXo77lB9SkKyK5ZGvf6bTw== X-WBNR-Posting-Host: 156.77.108.72 From: "=?Utf-8?B?U0s=?=" <SK (AT) discussions (DOT) microsoft.com Subject: Annoying: You are about to leave secure internet connection Date: Mon, 14 Feb 2005 11:17:06 -0800 Lines: 14 Message-ID: <CC2414DC-E478-4A70-AFDD-AA5823EBC505 (AT) microsoft (DOT) com MIME-Version: 1.0 Content-Type: text/plain; charset="Utf-8" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft CDO for Windows 2000 Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 Newsgroups: microsoft.public.dotnet.security NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29 Path: TK2MSFTNGXA01.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA03.phx.gbl Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.dotnet.security:3733 X-Tomcat-NG: microsoft.public.dotnet.security We have our intranet website running on IIS 6.0 using SSL. On our application side, we have some code that goes to the \\Servername\DirectoryName\myFile.pdf and grabs the file for the user. Now the problem is with SSL. Everytime some user click on the link, they get Internet Explorer security message: You are about to leave the secure internet connection. It will be possible for others to view the information. Any idea\tips\tricks that we can find a work around on this other than requesting users to check the box that says, In future, do not show this warning? Help!!! SK |
#5
| |||
| |||
|
|
Think of what would be possible if you could do this: I create a website that requests that a user create a login. Their user name and password are entered on an SSL site, but then on the next page I redirect them to a site that's not accessable via HTTPS. Additionally my site also programatically disables that dialog box. Now, the user is entering personal information, thinking that it's safe, when in fact it isn't. Granted the above is a pretty strange scenario, but the point is the same. If you could do this, it would be an enormous security hole in the browser. -Shawn http://blogs.msdn.com/shawnfa -- This posting is provided "AS IS" with no warranties, and confers no rights. Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated. -------------------- Thread-Topic: Annoying: You are about to leave secure internet connection thread-index: AcUSycYByXo77lB9SkKyK5ZGvf6bTw== X-WBNR-Posting-Host: 156.77.108.72 From: "=?Utf-8?B?U0s=?=" <SK (AT) discussions (DOT) microsoft.com Subject: Annoying: You are about to leave secure internet connection Date: Mon, 14 Feb 2005 11:17:06 -0800 Lines: 14 Message-ID: <CC2414DC-E478-4A70-AFDD-AA5823EBC505 (AT) microsoft (DOT) com MIME-Version: 1.0 Content-Type: text/plain; charset="Utf-8" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft CDO for Windows 2000 Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 Newsgroups: microsoft.public.dotnet.security NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29 Path: TK2MSFTNGXA01.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA03.phx.gbl Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.dotnet.security:3733 X-Tomcat-NG: microsoft.public.dotnet.security We have our intranet website running on IIS 6.0 using SSL. On our application side, we have some code that goes to the \\Servername\DirectoryName\myFile.pdf and grabs the file for the user. Now the problem is with SSL. Everytime some user click on the link, they get Internet Explorer security message: You are about to leave the secure internet connection. It will be possible for others to view the information. Any idea\tips\tricks that we can find a work around on this other than requesting users to check the box that says, In future, do not show this warning? Help!!! SK |
#6
| |||
| |||
|
|
From: "Nicole Calinoiu" <calinoiu REMOVETHIS AT gmail DOT com References: <CC2414DC-E478-4A70-AFDD-AA5823EBC505 (AT) microsoft (DOT) com gwUVjhgFFHA.400 (AT) TK2MSFTNGXA02 (DOT) phx.gbl Subject: Re: Annoying: You are about to leave secure internet connection Date: Sat, 19 Feb 2005 13:09:17 -0500 Lines: 80 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-RFC2646: Format=Flowed; Original Message-ID: <#yP5j4qFFHA.2232 (AT) TK2MSFTNGP14 (DOT) phx.gbl Newsgroups: microsoft.public.dotnet.security NNTP-Posting-Host: modemcable209.143-202-24.mc.videotron.ca 24.202.143.209 Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSF TNGP08.phx.gbl!TK2MSFTNGP1 |
|
Xref: TK2MSFTNGXA02.phx.gbl microsoft.public.dotnet.security:9145 X-Tomcat-NG: microsoft.public.dotnet.security The example doesn't need to be that complex. Redirecting to within the same site to force HTTP can cause a problem if the user continues to submit sensitive information. Redirecting to another site is potentially a problem regardless of whether HTTP or HTTPS, particularly if the user doesn't notice the change and continues to behave as if he were interacting with the original site. ""Shawn Farkas [MS]"" <shawnfa (AT) online (DOT) microsoft.com> wrote in message news:gwUVjhgFFHA.400 (AT) TK2MSFTNGXA02 (DOT) phx.gbl... Think of what would be possible if you could do this: I create a website that requests that a user create a login. Their user name and password are entered on an SSL site, but then on the next page I redirect them to a site that's not accessable via HTTPS. Additionally my site also programatically disables that dialog box. Now, the user is entering personal information, thinking that it's safe, when in fact it isn't. Granted the above is a pretty strange scenario, but the point is the same. If you could do this, it would be an enormous security hole in the browser. -Shawn http://blogs.msdn.com/shawnfa -- This posting is provided "AS IS" with no warranties, and confers no rights. Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated. -------------------- Thread-Topic: Annoying: You are about to leave secure internet connection thread-index: AcUSycYByXo77lB9SkKyK5ZGvf6bTw== X-WBNR-Posting-Host: 156.77.108.72 From: "=?Utf-8?B?U0s=?=" <SK (AT) discussions (DOT) microsoft.com Subject: Annoying: You are about to leave secure internet connection Date: Mon, 14 Feb 2005 11:17:06 -0800 Lines: 14 Message-ID: <CC2414DC-E478-4A70-AFDD-AA5823EBC505 (AT) microsoft (DOT) com MIME-Version: 1.0 Content-Type: text/plain; charset="Utf-8" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft CDO for Windows 2000 Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 Newsgroups: microsoft.public.dotnet.security NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29 Path: TK2MSFTNGXA01.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA03.phx.gbl Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.dotnet.security:3733 X-Tomcat-NG: microsoft.public.dotnet.security We have our intranet website running on IIS 6.0 using SSL. On our application side, we have some code that goes to the \\Servername\DirectoryName\myFile.pdf and grabs the file for the user. Now the problem is with SSL. Everytime some user click on the link, they get Internet Explorer security message: You are about to leave the secure internet connection. It will be possible for others to view the information. Any idea\tips\tricks that we can find a work around on this other than requesting users to check the box that says, In future, do not show this warning? Help!!! SK |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |