Vulnerabilities > CVE-2008-3480 - Improper Restriction of Operations within the Bounds of a Memory Buffer vulnerability in Anzio Print Wizard and web Print Object
Attack vector
UNKNOWN Attack complexity
UNKNOWN Privileges required
UNKNOWN Confidentiality impact
UNKNOWN Integrity impact
UNKNOWN Availability impact
UNKNOWN Summary
Stack-based buffer overflow in the Anzio Web Print Object (WePO) ActiveX control 3.2.19 and 3.2.24, as used in Anzio Print Wizard, allows remote attackers to execute arbitrary code via a long mainurl parameter.
Vulnerable Configurations
Part | Description | Count |
---|---|---|
Application | 4 |
Common Weakness Enumeration (CWE)
Common Attack Pattern Enumeration and Classification (CAPEC)
- Buffer Overflow via Environment Variables This attack pattern involves causing a buffer overflow through manipulation of environment variables. Once the attacker finds that they can modify an environment variable, they may try to overflow associated buffers. This attack leverages implicit trust often placed in environment variables.
- Overflow Buffers Buffer Overflow attacks target improper or missing bounds checking on buffer operations, typically triggered by input injected by an attacker. As a consequence, an attacker is able to write past the boundaries of allocated buffer regions in memory, causing a program crash or potentially redirection of execution as per the attackers' choice.
- Client-side Injection-induced Buffer Overflow This type of attack exploits a buffer overflow vulnerability in targeted client software through injection of malicious content from a custom-built hostile service.
- Filter Failure through Buffer Overflow In this attack, the idea is to cause an active filter to fail by causing an oversized transaction. An attacker may try to feed overly long input strings to the program in an attempt to overwhelm the filter (by causing a buffer overflow) and hoping that the filter does not fail securely (i.e. the user input is let into the system unfiltered).
- MIME Conversion An attacker exploits a weakness in the MIME conversion routine to cause a buffer overflow and gain control over the mail server machine. The MIME system is designed to allow various different information formats to be interpreted and sent via e-mail. Attack points exist when data are converted to MIME compatible format and back.
Exploit-Db
description | Anzio Web Print Object <= 3.2.30 ActiveX Buffer Overflow Exploit. CVE-2008-3480. Remote exploit for windows platform |
file | exploits/windows/remote/6278.txt |
id | EDB-ID:6278 |
last seen | 2016-01-31 |
modified | 2008-08-20 |
platform | windows |
port | |
published | 2008-08-20 |
reporter | Core Security |
source | https://www.exploit-db.com/download/6278/ |
title | Anzio Web Print Object <= 3.2.30 - ActiveX Buffer Overflow Exploit |
type | remote |
Nessus
NASL family | Windows |
NASL id | ANZIO_WEPO_ACTIVEX_MAINURL_OVERFLOW.NASL |
description | The remote host contains the Anzio Web Print Object (WePO) ActiveX component, which is used for |
last seen | 2020-06-01 |
modified | 2020-06-02 |
plugin id | 34021 |
published | 2008-08-21 |
reporter | This script is Copyright (C) 2008-2018 and is owned by Tenable, Inc. or an Affiliate thereof. |
source | https://www.tenable.com/plugins/nessus/34021 |
title | Anzio Web Print Object (WePO) ActiveX mainurl Parameter Buffer Overflow |
code |
|
Packetstorm
data source | https://packetstormsecurity.com/files/download/69284/CORE-2008-0624.txt |
id | PACKETSTORM:69284 |
last seen | 2016-12-05 |
published | 2008-08-21 |
reporter | Core Security Technologies |
source | https://packetstormsecurity.com/files/69284/Core-Security-Technologies-Advisory-2008.0624.html |
title | Core Security Technologies Advisory 2008.0624 |
Seebug
bulletinFamily exploit description No description provided by source. id SSV:9327 last seen 2017-11-19 modified 2008-08-21 published 2008-08-21 reporter Root source https://www.seebug.org/vuldb/ssvid-9327 title Anzio Web Print Object <= 3.2.30 ActiveX Buffer Overflow Exploit bulletinFamily exploit description CVE ID:CVE-2008-3480 CNCVE ID:CNCVE-20083480 Anzio Web Print Object是一款Windows ActiveX WEB页组件,当放置在WEB页上时可从文件或WEB服务器推打印作业到用户本地打印机而不需要限制一些附加的HTML。 Anzio Web Print Object处理"mainurl"参数存在缓冲区溢出,远程攻击者可以利用漏洞以应用程序权限执行任意指令。 WePO ActiveX组件提供参数"mainurl"从本地文件名或URL中获取内容来打印: <param name="mainurl" value="http://www.somewhere.com/myreport.pcl"> WePO以OLECHAR格式接收"mainurl"参数,并使用oleaut32.dll中的API SysAllocStringLen传送BSTR字符串,指向SysAllocStringLen返回的BSTR字符串存储在堆栈中: 024F64B8 . 51 PUSH ECX ; length of "mainurl" value 024F64B9 . 52 PUSH EDX ; pointer to "mainurl" value 024F64BA . E8 4DB0FFFF CALL JMP.oleaut32.SysAllocStringLen 024F64BF . 5A POP EDX 024F64C0 . 85C0 TEST EAX,EAX 024F64C2 .^0F84 94F9FFFF JE PWBUTT~1.024F5E5C 024F64C8 . 8902 MOV DWORD PTR DS:[EDX],EAX ; ;Save BSTR pointer to stack 024F64CA > C3 RETN 之后它以ASCII格式拷贝"mainurl"到堆栈上的缓冲区中,而没有任何长度验证: 024F300C /$ 56 PUSH ESI 024F300D |. 57 PUSH EDI 024F300E |. 89C6 MOV ESI,EAX ; ESI = pointer to "mainurl" value 024F3010 |. 89D7 MOV EDI,EDX ; EDI = pointer to destination buffer in the stack 024F3012 |. 89C8 MOV EAX,ECX ; ECX = length of "mainurl" value 024F3014 |. 39F7 CMP EDI,ESI 024F3016 |. 77 13 JA SHORT PWBUTT~1.024F302B 024F3018 |. 74 2F JE SHORT PWBUTT~1.024F3049 024F301A |. C1F9 02 SAR ECX,2 024F301D |. 78 2A JS SHORT PWBUTT~1.024F3049 024F301F |. F3:A5 REP MOVS DWORD PTR ES:[EDI],DWORD PTR DS:[ESI] ; Copy "mainurl" value to stack buffer, 024F3021 |. 89C1 MOV ECX,EAX ; without validating its length 024F3023 |. 83E1 03 AND ECX,3 024F3026 |. F3:A4 REP MOVS BYTE PTR ES:[EDI],BYTE PTR DS:[ESI] 024F3028 |. 5F POP EDI 024F3029 |. 5E POP ESI 024F302A |. C3 RETN 通过使用超长的"mainurl"值的WEB页,攻击者以溢出堆栈缓冲区,并覆盖SEH以执行任意代码。 Anzio Print Wizard Personal Edition 3.x Anzio Print Wizard Server Edition 3.x Anzio Web Print Object (WePO) 3.x 升级到Anzio Web Print Object 3.2.30版本: <a href=http://www.anzio.com/download-wepo.htm target=_blank>http://www.anzio.com/download-wepo.htm</a> id SSV:3907 last seen 2017-11-19 modified 2008-08-23 published 2008-08-23 reporter Root title Anzio Web Print Object (WePO) ActiveX组件"mainurl"缓冲区溢出漏洞 bulletinFamily exploit description No description provided by source. id SSV:65654 last seen 2017-11-19 modified 2014-07-01 published 2014-07-01 reporter Root source https://www.seebug.org/vuldb/ssvid-65654 title Anzio Web Print Object <= 3.2.30 ActiveX Buffer Overflow Exploit
References
- http://secunia.com/advisories/31554
- http://secunia.com/advisories/31554
- http://securityreason.com/securityalert/4197
- http://securityreason.com/securityalert/4197
- http://www.coresecurity.com/content/anzio-web-print-object-buffer-overflow
- http://www.coresecurity.com/content/anzio-web-print-object-buffer-overflow
- http://www.securityfocus.com/archive/1/495630/100/0/threaded
- http://www.securityfocus.com/archive/1/495630/100/0/threaded
- http://www.securityfocus.com/bid/30545
- http://www.securityfocus.com/bid/30545
- http://www.vupen.com/english/advisories/2008/2417
- http://www.vupen.com/english/advisories/2008/2417
- https://www.exploit-db.com/exploits/6278
- https://www.exploit-db.com/exploits/6278