发新话题
打印

[转载]卡巴斯基远程堆溢出漏洞

[转载]卡巴斯基远程堆溢出漏洞

来源:绿盟科技

受影响系统:
Kaspersky Labs Kaspersky Antivirus
描述:
--------------------------------------------------------------------------------
Kaspersky Antivirus是非常流行的杀毒软件。

Kaspersky病毒库可提供各种文件格式支持进行病毒分析。在分析cab文件时Kaspersky存在堆溢出漏洞,可能允许攻击者完全控制受保护的系统。攻击者可以通过常见的协议(如SMTP、SMB、HTTP和FTP)等无需用户交互便以默认配置远程利用这个漏洞。

<*来源:Alex Wheeler

链接:http://marc.theaimsgroup.com/?l= ... 37961522571&w=2
*>

测试方法:
--------------------------------------------------------------------------------

警 告

以下程序(方法)可能带有攻击性,仅供安全研究与教学之用。使用者风险自负!

static int CAB_read_record(CAB_FILE__struct *cfs, BYTE *dst) {
BYTE tmp = 0;
int count = 0;
do {
count++;
cfs->CAB_fgetc(cfs, &tmp);
if(dst) {
*dst = tmp;
dst++;
}
} while(tmp);

Return count;
}

建议:
--------------------------------------------------------------------------------
厂商补丁:

Kaspersky Labs
--------------
目前厂商还没有提供补丁或者升级程序,我们建议使用此软件的用户随时关注厂商的主页以获取最新版本:

http://www.kaspersky.com/
益友网吧联盟  http://www.96-7.com

TOP

static int CAB_read_record(CAB_FILE__struct *cfs, BYTE *dst) {
BYTE tmp = 0;
int count = 0;
do {
count++;
cfs->CAB_fgetc(cfs, &tmp);
if(dst) {
*dst = tmp;
dst++;
}
} while(tmp);

Return count;
}

用什么编译器可编译这个?

TOP

所以的版本都有么?
我现在有的是5.0.388.1
有没有危险啊?

TOP

发新话题