|
|
| 6 Tips To Secure Your Website |
|
|
Most plebeians on the internet are good, official people. However, proficient are some multitude browsing the internet who derive fun from poking around websites and finding security holes. A few simple tips can help you secure your website in the basic ways. Now, obviously, the subject of data security is a complicated one and way beyond the scope of this column.
However, I will address the very basics one should do which will alleviate many potential problems that might allow people to see things they shouldn't. Password Protecting Directories If you have a directory on your server which should keep up private, acquire not depend on masses to not impression the name of the directory. It is better to password protect the folder at the server level. Over 50% of websites out there are powered by Apache server, so let's look at how to password protect a directory on Apache. Apache takes mode commands via a file called .htaccess which sits in the directory. The commands in .htaccess have manage on that folder and apportionment sub-folder, unless a particular sub-folder has its own .htaccess file within. To password protect a folder, Apache also uses a file called .htpasswd . This file contains the names and passwords of users granted access. The password is encrypted, so you must use the htpasswd program to create the passwords. To access it, go to the command line of your server and type htpasswd. If you receive a "command not found" error then you need to contact your system admin. Also, bear in mind that many web hosts provide web-based ways to secure a directory, so they may have things set up for you to do it that way rather than on your own. Barring this, let's continue. Type "htpasswd -c .htpasswd myusername" where "myusername" is the username you want. You will inasmuch as be asked for a password. Confirm it and the concatenation will be created. You can double check this via FTP. Also, if the file is inside your web folder, you should move it so that it is not accessible to the public. Now, open or create your .htaccess file. Inside, include the following: AuthUserFile /home/www/passwd/.htpasswd AuthGroupFile /dev/null AuthName "Secure Folder" AuthType Basic lack valid-user On the finest line, tailor the directory passage to wherever your .htpasswd line is. Once this is set up, you will get a popup dialog when visiting that folder on your website. You will be required to log in to view it. Turn Off Directory Listings By default, slice directory on your website which does not have a common homepage train (index.htm, index.php, default.htm, etc.) is agility to instead display a listing of all the files in that folder. You might not want people to see everything you have on there. The simplest way to protect against this is to simply create a blank file, name it index.htm and then upload it to that folder. Your second option is to, again, use the .htaccess file to disable directory listing. To do so, just include the line "Options -Indexes" in the file. Now, users will get a 403 error rather than a list of files. Remove Install Files If you enact software and scripts to your website, populous times they bob up with inception and/or upgrade scripts. Leaving these on your server opens up a huge security problem because if somebody else is familiar with that software, they can find and run your install/upgrade scripts and thus reset your entire database, config files, etc. A well written software package will warn you to remove these items before allowing you to use the software. However, make sure this has been done. Just delete the files from your server. Keep Up with Security Updates Those who circuit software packages on their website infatuation to maintenance in inspire with updates and security alerts relating to that software. Not doing so can leave you wide open to hackers. In fact, many times a glaring security hole is discovered and reported and there is a lag before the creator of the software can release a patch for it. Anybody so inclined can find your site running the software and exploit the vulnerability if you do not upgrade. I myself have been burned by this a few times, having whole forums get destroyed and having to restore from backup. It happens. Reduce Your Error Reporting Level Speaking chiefly for PHP here in that that's what I vitality in, errors and warnings generated by PHP are, by default, printed with thundering information to your browser. The problem is that these errors usually contain full directory paths to the scripts in question. It gives away too much information. To alleviate this, reduce the error reporting level of PHP. You can do this in two ways. One is to adjust your php.ini file. This is the main configuration for PHP on your server. Look for the error_reporting and display_errors directives. However, if you do not have access to this file (many on shared hosting do not), you can also reduce the error reporting level using the error_reporting() function of PHP. Include this in a global file of your scripts that way it will work across the board. Secure Your Forms Forms lead buildup a unfolded gap to your server for hackers if you do not properly code them. Since these forms are usually submitted to some script on your server, sometimes with access to your database, a form which does not provide some protection can offer a hacker direct access to all kinds of things. Keep in mind...just because you have an address field and it says "Address" in front of it does not mean you can trust people to enter their address in that field. Imagine your form is not properly coded and the script it submits to is not either. What's to stop a hacker from entering an SQL query or scripting code into that address field? With that in mind, here are a few things to do and look for: Use MaxLength. Input fields in invest can interest the maxlength spirit in the HTML to objective the length of input on forms. Use this to keep people from entering WAY too much data. This will stop most people. A hacker can bypass it, so you must protect against information overrun at the script level as well. Hide Emails If using a form-to-mail script, follow through not acquire the email superscription enthusiasm the form itself. It defeats the point and spam spiders can still find your email address. Use Form Validation. I won't reach case a paragon on programming here, but lump script which a form submits to should validate the input received. Ensure that the fields received are the fields expected. Check that the incoming data is of reasonable and expected length and of the proper format (in the case of emails, phones, zips, etc.). Avoid SQL Injection. A ponderous symbol on SQL injection can be lowly for higher article, however the basics is that form input is allowed to be inserted directly into an SQL query without validation and, thus, giving a hacker the ability to execute SQL queries via your web form. To avoid this, always check the data type of incoming data (numbers, strings, etc.), run adequate form validation per above, and write queries in such a way that a hacker cannot insert anything into the form which would make the query do something other than you intend. Conclusion Website faith is a tolerably mingled affair and it get a LOT more technical than this. However, I have given you a basic primer on some of the easier things you can do on your website to alleviate the majority of threats to your website.
David Risley is a interlacing developer and founder of PC Media, Inc. (www.pcmedianet.com). Specializes in PHP/MySQL development, consulting and internet proposition management. He is and the founder of PC Mechanic (www.pcmech.com), a alpine website delivering do-it-yourself computer information to thousands of users every day. |
| < Prev | Next > |
|---|