search
Homephp教程PHP开发Configure some server-side features of PHP to enhance PHP security
Configure some server-side features of PHP to enhance PHP securityDec 05, 2016 am 11:19 AM
linuxnosqlphpphp+mysqlphp serverweb serverdatabase server

Shaun Clowes and rfp have previously introduced in detail the problems encountered by PHP and CGI programs during the programming process, and how to break through the system through application vulnerabilities. In this article, we will go through some of PHP's
server-side features To configure and enhance the security of php. When writing cgi scripts, we must pay attention to various security issues and strictly filter user input. However, how can we often walk on the shore without getting our shoes wet, and how can we eat sesame seeds without dropping sesame seeds? , even the famous phpnuke, phpMyAdmin and other programs have experienced serious problems problem, not to mention scripts written by gangsters like me. So now we assume that the php script has serious problems, such as a while ago There is a big problem with phpnuke being able to upload php scripts. How can we configure the server to prevent the script from breaking through the system if there is such a problem?

1. Pay attention to patching known vulnerabilities when compiling

Starting from 4.0.5, PHP’s mail function has added a fifth parameter, but it is not filtered properly, allowing PHP applications to break through the safe_mode restrictions. Excuting an order. So when using 4.0.5 and 4.0.6
Before compilation, we need to modify the ext/standard/mail.c file in the php source code package to disable the fifth parameter of the mail function or filter shell characters. In line 152 of the mail.c file, which is the following line:
if (extra_cmd != NULL) {
Add extra_cmd=NULL after
; or extra_cmd = php_escape_shell_cmd(extra_cmd);
Then compile php, then we will patch it found this vulnerability.

2. Modify the php.ini configuration file

Make modifications based on the php.ini-dist of the php distribution version.
1)Error handling and logging
You can make some settings in the Error handling and logging section. First find:
display_errors = On
php turns on the error message display by default, we change it to:
display_errors = Off

After turning off the error display, the php function execution error message will no longer be displayed to the user, so To a certain extent, it can prevent attackers from learning the physical location of the script and some other useful information from the error message, which at least creates certain obstacles for the attacker's black box detection. These error messages may be useful to ourselves. We can let it be written to the specified file, then modify the following:
log_errors = Off
Change to:
log_errors = On

And specify the file, find the following line:
;error_log = filename
Remove the previous; comment and change filename to the specified file, such as
/usr/local/apache/logs/php_error.log

error_log = /usr/local/apache/logs/php_error.log
All errors will appear like this Will be written to the php_error.log file.

2)Safe Mode

php’s safe_mode function limits or disables many functions, which can solve php’s security issues to a great extent. Find in the Safe Mode section:
safe_mode = Off
Change to:
safe_mode = On

This turns on the safe_mode function. Some functions like shell_exec() and `` that can execute system commands are prohibited, and some other execution functions such as: exec(), system(), passthru(), popen() will be restricted to executing programs in the directory specified by safe_mode_exec_dir. If you really want to execute some commands or programs, find the following:
safe_mode_exec_dir =
Specify the path of the program to be executed, such as:
safe_mode_exec_dir = /usr/local/php/exec

Then copy the program you want to use to/ usr/local/php/exec directory, so that restricted functions like the above can also execute programs in this directory.

For detailed information about restricted functions in safe mode, please see the instructions on the main php website:
[url]http://www.php.net/manual/en/features.safe-mode.php[/url]

3)disable_functions

If you are not clear about the harmfulness of some functions and do not use them, simply disable these functions. Find the following line:
disable_functions =
Add the functions to be disabled after "=", and separate multiple functions with ",".

3. Modify httpd.conf

If you only allow your php script program to operate in the web directory, you can also modify the httpd.conf file to limit the operation path of php. For example, if your web directory is /usr/local/apache/htdocs, then add these lines to
httpd.conf:


php_admin_value open_basedir /usr/local/apache /htdocs


In this way, if the script wants to read files other than /usr/local/apache/htdocs, it will not be allowed. If the error message is opened,

will prompt an error like this:
Warning: open_basedir restriction in effect. File is in wrong directory in /usr/local/apache/htdocs/open.php on line 4 and so on.

4. Compile the php code

Zend has made a great contribution to PHP. The PHP4 engine uses Zend, and it has also developed many PHP enhancement components such as ZendOptimizer and ZendEncode. The optimizer ZendOptimizer only needs to be registered at [url]http://www.zend.com[/url] to be free?...

ZendOptimizer-1[1].1.0-PHP_4.0.5-FreeBSD4.0-i386.tar.gz
ZendOptimizer-1[1].1.0-PHP_4.0.5 -Linux_glibc21-i386.tar.gz
ZendOptimizer-1[1].1.0-PHP_4.0.5-Solaris-sparc.tar.gz
ZendOptimizer-1[1].1.0-PHP_4.0.5-Windows-i386.zip


The installation of the optimizer is very convenient, and there are detailed instructions in the package. Taking the UNIX version as an example, check the operating system clearly and extract the ZendOptimizer.so file in the package to a directory, assuming it is /usr/local/lib. Add two sentences to php.ini:
zend_optimizer.optimization_level= 15
zend_extension="/usr/local/lib/ZendOptimizer.so"

That’s it. Use phpinfo() to see the following text on the left side of the Zend icon:
with Zend Optimizer v1.1.0, Copyright (c) 1998-2000, by Zend Technologies

Then, the optimizer has been successfully attached.
But the compiler ZendEncode is not free. Here is a design by Ma Yong of [url]http://www.PHPease.com[/url] ... Mi Jiantao's Kangmo胗?/a> [url]http://www.zend.com[/url] Contact to obtain the license agreement.

After the PHP script is compiled, the execution speed of the script increases a lot. The script file can only see a bunch of garbled characters, which will prevent the attacker from further analyzing the script program on the server, and the password originally stored in clear text in the PHP script will also be lost. Got confidentiality, such as mysql password. However, it is more troublesome to change the script on the server side. It is better to change it locally and then upload it.


5. Permission settings for files and directories

Except for the upload directory, the permissions for other directories and files in the web directory must not allow the nobody user to write permissions. Otherwise, the attacker can modify the homepage file, so the permissions of the web directory must be set properly. Also, the owner of the php script must not be root, because files are read in safe_mode. The function is restricted so that the owner of the file being read must be the same as the owner of the currently executing script before it can be read. Otherwise, if the error display is turned on, an error such as the following will be displayed:

Warning: SAFE MODE Restriction in effect. The script whose uid is 500 is not allowed to access /etc/passwd owned by uid 0 in /usr/local/apache/htdocs/open.php on line 3
This way we can prevent many system files from being read, such as: /etc/passwd, etc.

The owners of the upload directory and the upload script must also be set to the same, otherwise errors will occur. Please pay attention to these in safe_mode.

6. Mysql startup permission settings


Mysql should be noted not to be started with root. It is best to create another mysqladm user. You can add a sentence to the system startup script such as /etc/rc.local:
su mysqladm -c "/usr/local/mysql/share/mysql/mysql.server start"

In this way, mysqladmin will be automatically used after the system restarts The user starts the mysql process.

7. Review of log files and upload directories and

Viewing logs has a lot to do with human laziness. Finding traces of attacks from such a large log file is like looking for a needle in a haystack, and there may not be one. The files in the directory uploaded by the web should also be checked frequently. There may be a problem with the program and the user has uploaded some illegal files, such as executing scripts.

8. Patches of the operating system itself

Same, patching known vulnerabilities in the system is the most basic responsibility of the system administrator, and it is also the last line of defense.


After the above configuration, although it cannot be said to be impregnable, it has also caused a lot of trouble for the attacker's testing to a certain extent. Even if there are serious vulnerabilities in the php script program, the attacker will not be able to cause actual damage.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software