How IE7 defines a site’s security zone

Does anyone know how IE7 determines which security zone to use for a site? I see the basics for IE6 here , but I cannot find the equivalent for IE7.

+4
source share
4 answers

I could use a little more information to narrow down my answer, but here is what I have:

Internet Explorer has 5 different security zones by default: local machine zone, intranet, Internet, reliable and limited access. They are defined in urlmon.dll (Url Moniker). Additional information here: http://msdn.microsoft.com/en-us/ library / ms537183 (VS.85) .aspx

But you can also implement your own security zone: http://msdn.microsoft.com/en-us/library/ms537182(VS.85).aspx

The way IE defines security zones shouldn't have changed between IE6 and IE7 (or IE8, for that matter)

The intranet sites are determined: 1. There are no dots in the names of url nodes ( http: // stackoverflow vs /fooobar.com / ... )

  1. Sites from file: // scheme in which a resource from UNC is assembled
+2
source

Security zones are configurable, but not limited to this, an ADS stream attached to a file. When IE7 downloads a file from the Internet, it attaches an ADS stream that describes the zone to which the file belongs. Check out the Streams tool from http://technet.microsoft.com/en-us/sysinternals/default.aspx .

+1
source

The way the zone is defined between IE6 and IE7 has changed. There were bugs in how IE6 did this. Unfortunately, I don’t know exactly how to do this. If you post URLs that are unpleasant to you, or give some guidance regarding the problem you are trying to solve, that in your opinion this information will be resolved for you, we can help in some other way.

0
source

Not sure what confusion is. The sites on your intranet are in the intranet zone, the websites are in the Internet zone, and the sites on your computer are in the local zone, unless you specifically redefined something in the browser settings.

-2
source

Source: https://habr.com/ru/post/1276415/


All Articles