Hi,
I would like to write a ftp scripting for automation some jobs
with security. I know someone MUST suggest using scp2 or sftp2....etc.
But based on the user's requirement, I must using ftp scripting.
Now the script is
ftp.sh
ftp -n << -EOF
open <hostname>
user <user> <password>
...
....
quit
As you know, <password> is a plain text with readable by other. Now
I want to write some with crypt the password like
ftp.sh
ftp -n << -EOF
open <hostname>
user <user> `decode <masked-password>`
...
....
quit
Any suggestion or comment ? As I know, I can use MD5, DES3 or RSA
alog...
But I don't know how to implement and how to start. Would you please
giving me some hints based on above mentioned three alog.. to write by
personal decoding function.
Thanks for yours kindly attention !/!
Regards
Andrew So
_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list