CVE-2007-4337 (CNNVD-200708-222)
中文标题:
Streamripper HTTP头解析远程缓冲区溢出漏洞
英文标题:
Multiple buffer overflows in the httplib_parse_sc_header function in lib/http.c in Streamripper befo...
漏洞描述
中文描述:
StreamRipper能够将网上的MP3流媒体保存到硬盘中,特别适合录制网络MP3广播。 StreamRipper中用于解析HTTP头的代码中存在多个缓冲区溢出漏洞,远程攻击者可能利用此漏洞控制用户系统。 具体位于lib/http.c文件httplib_parse_sc_header()函数的324行: extract_header_value()函数是通过Location:字符串调用的。 lib/http.c ... extract_header_value(header, info->http_location, "Location:"); ... int extract_header_value (char *header, char *dest, char *match) { char* start = (char *)strstr(header, match); if (start) { subnstr_until(start+strlen(match), "\n", dest, MAX_ICY_STRING); return 1; } else { return 0; } } ... lib/mchar.c ... char *subnstr_until(const char *str, char *until, char *newstr, int maxlen) { const char *p = str; int len = 0; for(len = 0; strncmp(p, until, strlen(until)) != 0 && len < maxlen; p++) { newstr[len] = *p; len++; } newstr[len] = '\0'; return newstr; } ... extract_header_value()假设info->http_location大小为MAX_ICY_STRING(4024)字节,但实际仅为MAX_HOST_LEN(512)字节;对仅有MAX_SERVER_LEN(1024)字节的HTTP头字符串Server:也做了同样的假设。如果用户受骗连接到了恶意的服务器的话,就可能触发缓冲区溢出,导致执行任意指令。
英文描述:
Multiple buffer overflows in the httplib_parse_sc_header function in lib/http.c in Streamripper before 1.62.2 allow remote attackers to execute arbitrary code via long (1) Location and (2) Server HTTP headers, a different vulnerability than CVE-2006-3124.
CWE类型:
标签:
受影响产品
| 厂商 | 产品 | 版本 | 版本范围 | 平台 | CPE |
|---|---|---|---|---|---|
| streamripper | streamripper | 1.61.1 | - | - |
cpe:2.3:a:streamripper:streamripper:1.61.1:*:*:*:*:*:*:*
|
| streamripper | streamripper | 1.61.17 | - | - |
cpe:2.3:a:streamripper:streamripper:1.61.17:*:*:*:*:*:*:*
|
| streamripper | streamripper | 1.61.24 | - | - |
cpe:2.3:a:streamripper:streamripper:1.61.24:*:*:*:*:*:*:*
|
| streamripper | streamripper | 1.61.25 | - | - |
cpe:2.3:a:streamripper:streamripper:1.61.25:*:*:*:*:*:*:*
|
| streamripper | streamripper | 1.61.26 | - | - |
cpe:2.3:a:streamripper:streamripper:1.61.26:*:*:*:*:*:*:*
|
| streamripper | streamripper | 1.62 | - | - |
cpe:2.3:a:streamripper:streamripper:1.62:*:*:*:*:*:*:*
|
解决方案
中文解决方案:
英文解决方案:
临时解决方案:
参考链接
cve.org
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:P/I:P/A:N
时间信息
利用信息
数据源详情
| 数据源 | 记录ID | 版本 | 提取时间 |
|---|---|---|---|
| CVE | cve_CVE-2007-4337 |
2025-11-11 15:17:54 | 2025-11-11 07:32:46 |
| NVD | nvd_CVE-2007-4337 |
2025-11-11 14:52:12 | 2025-11-11 07:41:32 |
| CNNVD | cnnvd_CNNVD-200708-222 |
2025-11-11 15:08:58 | 2025-11-11 07:49:19 |
版本与语言
安全公告
变更历史
查看详细变更
- vulnerability_type: 未提取 -> 授权问题
- cnnvd_id: 未提取 -> CNNVD-200708-222
- data_sources: ['cve', 'nvd'] -> ['cnnvd', 'cve', 'nvd']
查看详细变更
- cvss_score: 未提取 -> 5.8
- cvss_vector: NOT_EXTRACTED -> AV:N/AC:M/Au:N/C:P/I:P/A:N
- cvss_version: NOT_EXTRACTED -> 2.0
- affected_products_count: 0 -> 6
- data_sources: ['cve'] -> ['cve', 'nvd']