(1) Open PHP security mode
PHP's Safe mode is a very important embedded security mechanism that can control functions in PHP, such as System (),
At the same time, a lot of file operation functions are controlled by permissions, also do not allow some key file files, such as/etc/passwd,
But the default php.ini is not open safe mode, we turn it on:
Safe_mode = On
(2) User group security
When the Safe_mode is turned on, the Safe_mode_gid is turned off, so the PHP script can access the file and the same
Users of a group can also access files.
The recommended setting is:
Safe_mode_gid = Off
If you do not set it, we may not be able to operate on our server web directory files, such as we need
When you are working on a file.
(3) Safe Mode executable Program Home directory
If Safe mode is open, but you want to execute some programs, you can specify the home directory where you want to execute the program:
Safe_mode_exec_dir = D:/usr/bin
In general, there is no program to perform, so it is recommended not to execute the System program directory, you can point to a directory,
Then copy the program that needs to be executed, such as:
Safe_mode_exec_dir = D:/tool/exe
However, I recommend that you do not execute any programs, then you can point to our web directory:
Safe_mode_exec_dir = d:/usr/www
(4) Include files in Safe mode
If you want to include some public files in Safe mode, modify the options:
Safe_mode_include_dir = d:/usr/www/include/
In fact, the general PHP script contains files are in the program itself has been written, this can be set according to the specific needs.
(5) Control the directory that the PHP script can access
Using the Open_basedir option to control PHP scripts can only access the specified directory, so that you can avoid PHP script access
Files that should not be accessed, to some extent limit the harm of phpshell, we can generally set to access only the site directory:
Open_basedir = d:/usr/www
(6) Close the dangerous function
If Safe mode is turned on, the function prohibition is not necessary, but we consider it for security. Like what
We don't feel like executing PHP functions that can execute commands, including system (), or can view PHP information
Phpinfo () and so on, then we can ban them:
Disable_functions = System,passthru,exec,shell_exec,popen,phpinfo
If you want to disable the operation of any files and directories, you can turn off many file operations
Disable_functions=chdir,chroot,dir,getcwd,opendir,readdir,scandir,fopen,unlink,delete,
Copy,mkdir,rmdir,rename,file,file_get_contents,fputs,fwrite,chgrp,chmod,chown
The above is just a list of not commonly used file processing functions, you can also perform the above command function and this function combined,
will be able to resist most of the Phpshell.
(7) Turn off the disclosure of PHP version information in HTTP headers
In order to prevent hackers from obtaining information about the PHP version of the server, you can turn off the information ramp in the HTTP header:
expose_php = Off
For example, when the hacker in Telnet www.target.com 80, then will not be able to see the PHP information.
(8) Turning off registration of global variables
Variables submitted in PHP, including those submitted using post or get, are automatically registered as global variables and can be accessed directly.
This is very unsafe for the server, so we cannot have it registered as a global variable and turn off the registration global variable option:
Register_globals = Off
Of course, if you set this up, then you need to get the corresponding variable in a reasonable way, such as getting the variable var of get commit,
Then you need to use $_get[' var ' to get it, the PHP programmer should pay attention.
(9) Open MAGIC_QUOTES_GPC to prevent SQL injection
SQL injection is a very dangerous problem, small web site backstage was invaded, heavy the entire server fell,
So be sure to be careful. There is a setting in php.ini:
MAGIC_QUOTES_GPC = Off
This default is turned off, and if it is turned on, it will automatically convert the user to the SQL query.
For example, the ' switch ' and so on, which has a significant effect on preventing SQL injection. So we recommend setting it to:
MAGIC_QUOTES_GPC = On
(10) Error information control
General PHP is not connected to the database or other circumstances will be prompted error, the general error message will contain PHP script when
Before the path information or query SQL statements, such as information, such information provided to hackers, is not secure, so the general server recommended to prohibit error prompts:
Display_errors = Off
If you are trying to display an error message, be sure to set the level at which the error is displayed, such as displaying only the information above the warning:
error_reporting = e_warning & E_error
Of course, I recommend closing the error prompt.
(11) Error log
It is recommended that the error message can be logged after the display_errors is turned off to make it easier to find out why the server is running:
Log_errors = On
Also set the directory where the error log is stored, and suggest that the log of the root Apache be present together:
Error_log = D:/usr/local/apache2/logs/php_error.log
Note: You must allow the Apache users and groups to have write permissions to the file.
MySQL's Down right run
Create a new user like MySQL
NET user MySQL Mysql/add
net localgroup users Mysql/del
Does not belong to any group
If MySQL is installed in D:mysql, then, give MySQL Full control of the permissions, and then set in the system services, MySQL service properties, in the login attribute, select this user MySQL then enter the password, OK. Restart the MySQL service, and MySQL runs under low privileges.
Apache's down-weight operation
In the Windows platform to build the Apache default operation is the system permissions, to reduce the power of Apache.
NET user Apache Apche/add
net localgroup users Apache/del
We have established a user apche that does not belong to any group.
We open the Computer Manager, select the service, point Apache Service Properties, we choose Log on, select this account, we fill in the above established accounts and passwords, restart the Apache service, Ok,apache run under low privileges.
In fact, we can also set the permissions of each folder so that Apache users can only do what we want it to do, and create a single user who can read and write to each directory.