Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
How can I protect that? My thought is to move the password into a file and out of any directories that the Web server serves files from and set the owner of that file as 'nobody' with read/write permissions. Of course, I would use crypt or a digest to further protect that password.my $dbh = DBI->connect( 'dbi:ODBC:sometable','someuser', 'somepass', { +RaiseError=>1}) or die DBI->errstr;
Is it the best method of protecting passwords? Will it work on Windows? I do not know much about operating systems, so type slow :)
jatzger
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI and Password security
by Masem (Monsignor) on Jun 22, 2001 at 23:37 UTC | |
|
Re: CGI and Password security
by Zaxo (Archbishop) on Jun 23, 2001 at 05:47 UTC | |
|
Re: CGI and Password security
by Anonymous Monk on Jun 25, 2001 at 18:54 UTC |