in reply to Re: Re: Compress and FTP files
in thread Compress and FTP files

As an alternative to a username/password, you could create a keypair and use something like scp instead of FTP, and only grant access to the private key file to users who are supposed to put files using this program. No password, and you're moving your access control/security problem out to the file system, rather than creating a new security problem. And if you need to replace the key because it has been compromised, you can do it without changing the code.
--
Spring: Forces, Coiled Again!

Replies are listed 'Best First'.
Re: Re: Re: Re: Compress and FTP files
by gnu@perl (Pilgrim) on Dec 05, 2002 at 13:48 UTC
    Great Idea. I had not thought of that method. it would be much easier on the users as well. I will look into it.

    Thanks.