SiteLock implementation for trusted site zone

269 views Asked by At

I have added SiteLock 1.15 mechanism to my ActiveX - I want to restrict loading and running ActiveX from sites that are not in "Trusted Sites Zone".

I have added the following map:

const struct IObjectSafetySiteLock::SiteList MyClass::rgslTrustedSites[2] =
{
 { SiteList::Allow, L"http", SITELOCK_TRUSTED_ZONE },
 { SiteList::Allow, L"https", SITELOCK_TRUSTED_ZONE }
};

But when I run sitelist.exe provided with SiteLock 1.15 SDK,

I'm getting:

Version: 1.21
Features:  Uses IOleObject instead of IObjectWithSite
  Allow http://(All Sites in Intranet Zone)
  Allow https://(All Sites in Intranet Zone)

Shouldn't I get "All sites in Trusted Sites Zone ?

Thanks

0

There are 0 answers