php – 如何防止铬注入内容到网页

前端之家收集整理的这篇文章主要介绍了php – 如何防止铬注入内容到网页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
最近我发现我的应用程序在谷歌浏览器中行为不端.

在提交表单的页面上,我的应用程序在提交后,使用简单的方法重新加载页面

header('Location: ' . $url);

之后,页面呈现不正确,并将此内容注入DOM

<div id="sbi_camera_button" class="sbi_search" style="left: 0px; top: 0px; position: absolute; width: 29px; height: 27px; border: none; margin: 0px; padding: 0px; z-index: 2147483647; display: none; "></div>

手动页面刷新后,所有功能都按预期方式运行

我不知道是什么导致这种行为,因为我在封闭的本地环境中工作,应用程序在Firefox中正常工作.

我的应用程序使用以下库(托管在本地):

> jQuery v1.7.1
> jQuery UI 1.8.16
Bootstrap.js v 2.1.1

有人可以建议我可能会导致这个问题吗?

可能是Chrome的 Search By Image plugin吗?

我从that forum获得了提示.

原文链接:https://www.f2er.com/php/139773.html

猜你在找的PHP相关文章