缘起
在看资料时,看到这样的防止iframe嵌套的代码:
1 | try { |
假定test.com,test2.com是自己的域名,当其它网站恶意嵌套本站的页面时,跳转回本站的首页。
上面的代码有两个问题:
- referer拼写错误,实际上应该是referrer
- 解析referrer的代码太复杂,还不一定正确
无论在任何语言里,都不建议手工写代码处理URL。因为url的复杂度超出一般人的想像。很多安全的问题就是因为解析URL不当引起的。比如防止CSRF时判断referrer。
URI的语法:
http://en.wikipedia.org/wiki/URI_scheme#Generic_syntax
在javascript里解析url最好的办法
在javascript里解析url的最好办法是利用浏览器的js引擎,通过创建一个a标签:
1 | var getLocation = function(href) { |
简洁防iframe恶意嵌套的方法
下面给出一个简洁的防止iframe恶意嵌套的判断方法:
1 | if(window.top != window && document.referrer){ |
java里处理URL的方法
http://docs.oracle.com/javase/tutorial/networking/urls/urlInfo.html
用contain, indexOf, endWitch这些函数时都要小心。
1 | public static void main(String[] args) throws Exception { |
参考
http://stackoverflow.com/questions/736513/how-do-i-parse-a-url-into-hostname-and-path-in-javascript
http://stackoverflow.com/questions/5522097/prevent-iframe-stealing
Related Issues not found
Please contact @hengyunabc to initialize the comment