I am creating a website that is using a perl script, PHP, a MySQL database, and HTML. My main concern is making sure there is not anyway someone can gain access to anything that give them access to my information. I mean is there anyway for someone to get my perl script and see my database information. I know about sql injection but I have no forms for information to be entered into. Is there anything I should keep in mind with this stuff.
|
feedback
|
This will only happen when the webserver doesn't parse/process the script and returns it as plaintext. Usually this parsing/processing only happens on specific file extensions like Further, I've seen scripts which reads files (usually images or other static files) from (outside) the webapp context based on the path as a parameter. E.g. | |||||||
feedback
|
|
The breadth of this question is kind of overwhelming, but it's a great question and definitely important. Much of the issues you are going to have with your server can be tied to server access itself, make sure you don't use any software you don't need. If you don't need a name server, turn off bind; same goes for ftp, even sendmail if you can. Use strong passwords and alternate ports if possible. For PHP, see http://us3.php.net/manual/en/security.php and http://php-ids.org/; definitely use mysql_real_escape_string() and htmlentities(). For HTML/PHP/JS, see http://en.wikipedia.org/wiki/Cross-site_scripting There is a lot to think about. I'd recommend trying to find a mentor to help you figure out what is important. I'm mentoring a guy right now and it helps him a lot even if I'm not perfect. SO can help, but a person you trust who can look at how you do things can make recommendations you just won't get here unless you post your entire code base. | |||
|
feedback
|
| |||
|
feedback
|
|
Web application security is a big topic. However, you know about one of the biggest vulnerabilities out there, SQL Injection, so that's a good start. A couple other big ones are Cross Site Scripting (XSS) and Cross Site Request Forgery (CSRF - "See-Surf") XSS - http://en.wikipedia.org/wiki/Cross-site_scripting As usual Wikipedia provides a good intro. You may also want to look in to verifying request authenticity by using an HMAC | |||
|
feedback
|
|
Really go read this community wiki. Its full of information. Or just search here on stackoverflow there are many questions. | |||
|
feedback
|
|
Never ever trust any user input in any form.. Ever :) The hard part is figuring out all the ways a user can supply input to your site.. | |||
|
feedback
|