in reply to Re: Obscuring sensitive data in Perl code?
in thread Obscuring sensitive data in Perl code?
I don't think there is any way around this is there? Security through obscurity (while obviously bad for other reasons) falls down on this issue too.my $db_password = get_password("filename"); print $db_password; # someone could insert this... my $dbh = DBI->connect(.....);
|
|---|