The bottom line is that you can only protect yourself from the outside world. If a user has an account on the
same shared system as you, that person can read any file that is "available" for the Web because of chmod. So,
all things being equal, i could just pop on over to your cgi-bin dir and read your script with a text editor. There
is the username, there is the password. Even if you place the username and password in another file in a directory
that cannot be accessed by the web, i can still read it, because it has to be chmod'ed appropriately. By encrypting
the username and password, i can no longer simply view the file and glean the goods, but, as jayrom pointed out
in that thread, i can read the code that decrypts the goods, and therefore i can decrypt the goods myself.
FWIW, i think it is better to find a group of friends, if possible, and pool in on a hosted box. That way, you
have a lot more trust among the users of that system. Someone can still forget to lock the door, though ... oh
yeah. A read-only database user is nice too. If you don't need to write to the database, then connect to
the database with a user that cannot write to it -- if you have the means to set such an account up, of course.
Again, more reasons to get your own box, at least one where you have root access. :)
| [reply] |
| [reply] |
That indeed keeps them from peeking into the directory, but that doesn't keep them from accessing the file if
they know the name ahead of time. And where do they get the name? From the script that opens it for reading, and that
script is in the cgi-bin directory for your web site. Now the problem is that the web server executing the script
has to have permission to read the password file, so you can't just chmod the file (presumable owned by you) to 600
... unless you have root. Then you can chown the file to the web server, preventing other local users from viewing it
(unless they have root too).
| [reply] |
| [reply] |