in reply to Re: Obscuring sensitive data in Perl code?
in thread Obscuring sensitive data in Perl code?

++, but still, what is to stop someone from doing this to the original script: (pseudo-code)...
my $db_password = get_password("filename"); print $db_password; # someone could insert this... my $dbh = DBI->connect(.....);
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.

$ perldoc perldoc