以编程方式禁用浏览器安全/不安全内容提示

发布于 2024-10-15 22:54:50 字数 261 浏览 2 评论 0原文

我们有一个在 HTTPS 上建立的 sharepoint 2007 站点。该网站有许多页面,其中包含从其他网站引用的外部内容,而这些网站未在 https 上设置。内容是一些 RSS 提要、图像等。现在,每当用户打开共享点网站时,浏览器都会提示用户是否想要查看不安全的内容。我们拥有非常庞大的用户群,我们无法进入每台计算机并设置浏览器设置以显示不安全的内容或将站点添加到受信任区域。有什么方法可以让我们以编程方式使浏览器显示不安全的内容吗?可能使用活动 x 或其他东西?请让我知道这个问题的可能解决方案是什么。

We have a sharepoint 2007 site which has been set up on HTTPS. this site has many pages which have external content referenced from other sites which are not setup on https. The content is some rss feeds, images and the like. Now whenever the user opens the sharepoint site it gets a prompt from the browser saying if the user wants to see the insecure content or not. We have a very huge user base and we cannot go to every machine and set the browser settings to show the insecure content or add the site to the trusted zone. is there some way in which we can programmatically enable the browser to show the insecure content? Possibly using either an active x or something ? Please let me know what could be a possible solution to this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

故笙诉离歌 2024-10-22 22:54:50

如果您的系统位于域中并运行 IE,则可以使用组策略对象来执行此操作。

某些 IE 设置中的 GPO 注册表项:http://technet. microsoft.com/en-us/library/cc775996(WS.10).aspx

If your systems are on a domain and running IE, you can probably do this with Group Policy Objects.

GPO registry keys from some IE settings: http://technet.microsoft.com/en-us/library/cc775996(WS.10).aspx

不爱素颜 2024-10-22 22:54:50

您可以使用自己的 Web 服务器作为代理,这里是一个可能的示例。我还没有测试过,只是在谷歌上第一次点击它。我不太习惯 IIS 上的代理,但已经在 apache 上使用过 mod_proxy

然后,您可以通过 https: 代理将所有流量路由到外部站点,并避免客户端上出现警告。

在我看来,这有两个主要优点:

  1. 您不必为了舒适而牺牲安全性
  2. 您拥有一个管理中心点。

You could use your own web server as a proxy, one possible example here. I haven't tested it, just took the first hit it in google. I'm not very used to proxying on IIS but have already used mod_proxy on apache.

You would then route all the traffic to external sites through your https: proxy and avoid the warning on the clients.

In my eyes, this has two majour advantages:

  1. You do not have to trade security for comfort
  2. You have a central point of administration.
雾里花 2024-10-22 22:54:50

编辑 XSL 代码。将“GetSafe.html”替换为此。

 <xsl:template name="GetSafeHtml">
            <xsl:param name="Html"/>
            <xsl:choose>
                <xsl:when test="$rss_IsDesignMode = 'True'">
                    <xsl:call-template name="strip-tags">
                        <xsl:with-param name="text" select="$Html"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:call-template name="strip-tags">
                        <xsl:with-param name="text" select="rssaggwrt:MakeSafe($Html)"/>
                    </xsl:call-template>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>

        <xsl:template name="strip-tags">
            <xsl:param name="text"/>
            <xsl:choose>
                <xsl:when test="contains($text, '<')">
                    <xsl:value-of select="substring-before($text, '<')"/>
                    <xsl:call-template name="strip-tags">
                        <xsl:with-param name="text" select="substring-after($text, '>')"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="$text"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>

Edit the XSL Code. Replace "GetSafe.html" with this.

 <xsl:template name="GetSafeHtml">
            <xsl:param name="Html"/>
            <xsl:choose>
                <xsl:when test="$rss_IsDesignMode = 'True'">
                    <xsl:call-template name="strip-tags">
                        <xsl:with-param name="text" select="$Html"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:call-template name="strip-tags">
                        <xsl:with-param name="text" select="rssaggwrt:MakeSafe($Html)"/>
                    </xsl:call-template>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>

        <xsl:template name="strip-tags">
            <xsl:param name="text"/>
            <xsl:choose>
                <xsl:when test="contains($text, '<')">
                    <xsl:value-of select="substring-before($text, '<')"/>
                    <xsl:call-template name="strip-tags">
                        <xsl:with-param name="text" select="substring-after($text, '>')"/>
                    </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:value-of select="$text"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:template>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文