rauljuan has asked for the wisdom of the Perl Monks concerning the following question:
The LOGIN_PERL_SCRIPT uses Expect.pm to automatically log me in. LOGIN_PERL_SCRIPT has the user/pass because the GUI writes it to a file and then the LOGIN_PERL_SCRIPT opens the file, gets the user/pass, and deletes the file. This way no one can do a ps -ef and grab the user/pass if I were to use my ($user,$pass)=@ARGV to get it from command line.system("xterm -e /PATH/TO/LOGIN_PERL_SCRIPT &");
QUESTION:
How, if possible, can I set user/pass as Global Variable that be read by LOGIN_PERL_SCRIPT? Is it possible to write user/pass to a memory location that can be called by other programs, or something along these lines?
Thanks in advanced...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Passing Passwords
by Abigail-II (Bishop) on Nov 15, 2002 at 16:18 UTC | |
|
Re: Passing Passwords
by Notromda (Pilgrim) on Nov 15, 2002 at 21:23 UTC | |
|
Re: Passing Passwords
by grantm (Parson) on Nov 15, 2002 at 23:54 UTC |