Some functions that are best banned in php.ini (diables_functon)_PHP Tutorial

WBOY
Release: 2016-07-12 09:03:56
Original
984 people have browsed it

Some of the best banned functions in php.ini (diables_functon)

PHP has many functions, some of which are very unsafe, so we need to ban them.
So which functions are dangerous?
phpinfo()
Function description: Output PHP environment information and related module, WEB environment and other information.
Danger level: Medium
passthru()
Function description: Allows executing an external program and echoing the output, similar to exec().
Danger Level: High
exec()
Function description: Allows the execution of an external program (such as UNIX Shell or CMD command, etc.).
Danger Level: High
system()
Function description: Allows executing an external program and echoing the output, similar to passthru().
Danger level: High
chroot()
Function description: Can change the working root directory of the current PHP process, only if the system supports CLI mode
Only works with PHP, and this function is not available for Windows systems.
Danger level: High
scandir()
Function description: List files and directories in the specified path.
Danger level: Medium
chgrp()
Function description: Change the user group to which a file or directory belongs.
Danger level: High
chown()
Function description: Change the owner of a file or directory.
Danger level: High
shell_exec()
Function description: Execute commands through Shell and return the execution result as a string.
Danger Level: High
proc_open()
Function description: Execute a command and open the file pointer for reading and writing.
Danger Level: High
proc_get_status()
Function description: Get information about the process opened using proc_open().
Danger Level: High
error_log()
Function description: Send error information to the specified location (file).
Safety Note: In some versions of PHP, error_log() can be used to bypass PHP safe mode,
Execute any command.
Danger level: low
ini_alter()
Function description: It is an alias function of the ini_set() function and has the same function as ini_set().
See ini_set() for details.
Danger level: High
ini_set()
Function description: Can be used to modify and set PHP environment configuration parameters.
Danger level: High
ini_restore()
Function description: Can be used to restore PHP environment configuration parameters to their initial values.
Danger level: High
dl()
Function description: Load a PHP external module while PHP is running (not when it is started).
Danger level: High
pfsockopen()
Function description: Establish a socket persistent connection in the Internet or UNIX domain.
Danger level: High
syslog()
Function description: Can call the system layer syslog() function of UNIX system.
Danger level: Medium
readlink()
Function description: Return the contents of the target file pointed to by the symbolic link.
Danger level: Medium
symlink()
Function description: Create a symbolic link in UNIX system.
Danger level: High
popen()
Function description: A command can be passed through the parameters of popen() and executed on the file opened by popen().
Danger level: High
stream_socket_server()
Function description: Establish an Internet or UNIX server connection.
Danger level: Medium
putenv()
Function description: Used to change the system character set environment when PHP is running. In PHP versions earlier than 5.2.6, this function can be used
After modifying the system character set environment, use the sendmail command to send special parameters to execute the system SHELL command.
Danger level: High
In vim /usr/local/php/etc/php.ini
disable_function=phpinfo,eval,passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,pfsockopen,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server ,fsocket,fsockopen

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1076509.htmlTechArticleSome of the best banned functions in php.ini (diables_functon) PHP has many functions, some of which are very unsafe , so we need to ban it. So which functions are dangerous? phpinfo()...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!