我已将 SiteLock 1.15 机制添加到我的 ActiveX - 我想限制从不在“受信任的站点区域”中的站点加载和运行 ActiveX。
我添加了以下地图:
const struct IObjectSafetySiteLock::SiteList MyClass::rgslTrustedSites[2] =
{
{ SiteList::Allow, L"http", SITELOCK_TRUSTED_ZONE },
{ SiteList::Allow, L"https", SITELOCK_TRUSTED_ZONE }
};
但是当我运行 SiteLock 1.15 SDK 提供的 sitelist.exe 时,
我越来越:
Version: 1.21
Features: Uses IOleObject instead of IObjectWithSite
Allow http://(All Sites in Intranet Zone)
Allow https://(All Sites in Intranet Zone)
我不应该得到“受信任站点区域中的所有站点吗?
谢谢