Is there more secure way of using DBI than putting the password in plain text in script?
There are several, depending on your configuration (e.g., your database). You can
- Read the usename and password out of a file that's not accessible to the web server. This protects against web server exploits that might make the script visible. Such exploits were a problem several years back, and now affect only old, unpatched servers.
- Configure your database server to only accept requests that come from specific IP addresses (e.g., 127.0.0.1). This limits the damage that might happen if someone hacked your script remotely, but doesn't help if they hack the box.
- Defer all direct database access to a middle-tier process that prompts for a user at startup. Some high-security shops actually do this, which makes life a nuisance for support staff when the power fails.
- Defer all direct database access to a middle-tier process that lives on a separate box, and which speaks a narrow, application-specific protocol. This limits the damage if someone hacks your web server box.
A while back I gave some prior advice to a similar question here. You might find other info in that thread useful.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|