我使用许多必须 100% 安全的 SSL/https 页面,所以锁是绿色的而不是黄色的。
很容易查明任何“dom 级别”脚本或图像,因为控制台会显示错误“此页面正在从_加载不安全的内容”
问题是当一个安全的 https 脚本加载非 https 图像/脚本时......它似乎没有作为加载不安全内容的错误记录在 chrome 开发工具控制台中。查看它的唯一方法是,如果我手动将鼠标移动到 80 个不同的资产链接、跟踪像素等,并确保它以 https 开头
有谁知道更好的处理方法?谢谢!
我使用许多必须 100% 安全的 SSL/https 页面,所以锁是绿色的而不是黄色的。
很容易查明任何“dom 级别”脚本或图像,因为控制台会显示错误“此页面正在从_加载不安全的内容”
问题是当一个安全的 https 脚本加载非 https 图像/脚本时......它似乎没有作为加载不安全内容的错误记录在 chrome 开发工具控制台中。查看它的唯一方法是,如果我手动将鼠标移动到 80 个不同的资产链接、跟踪像素等,并确保它以 https 开头
有谁知道更好的处理方法?谢谢!
In Firebug you can enable the display of a Protocol column. To do so you have to right-click onto the column headers inside the Net panel and click on Protocol. Then you can sort by that column by clicking on it's column header.
Doing so it should be pretty easy to spot the insecure request.
Sebastian