本文介绍http相关的一些安全问题,推荐阅读道哥的《白帽子讲web安全》
多个参数含有相同的名字
例如:
?color=blue?color=red
reference
https://www.owasp.org/images/b/ba/AppsecEU09_CarettoniDiPaola_v0.8.pdf
In case of multiple parameters with the same name, HTTP back-ends behave in several ways
我觉得我有必要按照下面的表格搭建环境试一试
Given the URL and querystring: http://example.com/?color=red&color=blue
Web Application Server Backend | Parsing Result | Example |
---|---|---|
ASP.NET / IIS | All occurrences concatenated with a comma | color=red,blue |
ASP / IIS | All occurrences concatenated with a comma | color=red,blue |
PHP / Apache | Last occurrence only | color=blue |
PHP / Zeus | Last occurrence only | color=blue |
JSP, Servlet / Apache Tomcat | First occurrence only | color=red |
JSP, Servlet / Oracle Application Server 10g | First occurrence only | color=red |
JSP, Servlet / Jetty | First occurrence only | color=red |
IBM Lotus Domino | Last occurrence only | color=blue |
IBM HTTP Server | First occurrence only | color=red |
mod_perl, libapreq2 / Apache | First occurrence only | color=red |
Perl CGI / Apache | First occurrence only | color=red |
mod_wsgi (Python) / Apache | First occurrence only | color=red |
Python / Zope | All occurrences in List data type | color=['red','blue'] |
X-Frame-Options是响应报文头,用来指示浏览器是否允许在<frame> <iframe>中渲染页面,正确的使用该报文头可以防治点击劫持(Clickjacking)
浏览器实现的同源策略是一种安全保护机制,但是它也限制正常的跨域访问。w3制定了一个新的标准用来解决跨域访问问题。
例如
# 客户端
curl -H "Origin:http://www.example.com" --url http://example.com
# 服务端
<?php
header("Access-Control-Allow-Origin:*");
?>
大部分标准都是存在的,只不过是你没有去关注,没有去阅读罢了
https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
An example is:
Location: http://www.w3.org/pub/WWW/People.html
<?php
Location: http://www.w3.org/pub/WWW/People.html
?>