$ftp = Net::FTP->new("$ftp_server_name", Debug => 0) or die(""); #&server_error,   ,
   $ftp->login("$ftp_user","$ftp_pass");

   $ftp->binary;

   $ftp->put("$upload_filename");

   $ftp->quit;

If I compile the code into an .exe file with ActiveState Perl, can an average hacker look at the machine code to get the username, password, and FTP address? 

_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to