PHP Security Configuration

##(1) Turn on PHP’s safe mode (recommended to learn : PHP programming from entry to proficiency)
php's security mode is a very important built-in security mechanism that can control some functions in php, such as system(), and at the same time control many The file operation function performs permission control and does not allow certain key files, such as /etc/passwd, but the default php.ini does not open the safe mode. We open it:safe_mode = on
(2) User group security
When safe_mode is turned on and safe_mode_gid is turned off, the php script can access the file, and users in the same group can also access the file. It is recommended to set it to:safe_mode_gid = offIf you do not set it, we may not be able to operate the files in our server website directory, such as when we need to operate files.
(3) Home directory for executing programs in safe mode
If safe mode is turned on, but you want to execute certain programs, you can specify the program to be executed. The home directory:safe_mode_exec_dir = D:/usr/binGenerally, there is no need to execute any program, so it is recommended not to execute the system program directory. You can point to a directory and then copy the program that needs to be executed, such as:
safe_mode_exec_dir = D:/tmp/cmdHowever, I recommend not to execute any program, 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 certain public files in safe mode, then modify the options:safe_mode_include_dir = D:/usr/www/include/In fact, generally the files included in PHP scripts have been written in the program itself. This can be set according to specific needs.
(5) Control the directories that PHP scripts can access
Use the open_basedir option to control that PHP scripts can only access specified directories, which can prevent PHP scripts from accessing directories that should not be accessed. The accessed files limit the harm of phpshell to a certain extent. We can generally set it to only access the website directory:open_basedir = D:/usr/www
(6) Turn off dangerous functions
if If the safe mode is turned on, function prohibition is not necessary, but we still consider it for safety's sake. For example, if we don’t want to execute PHP functions that can execute commands, including system(), or phpinfo() and other functions that can view PHP information, then we can ban them:disable_functions = system,passthru,exec,shell_exec,popen,phpinfoIf you To prohibit any file and directory operations, you can close 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,chownThe above only lists some of the commonly used file processing functions. You can also combine the above execution command function with this function, and you can Resist most phpshells.
(7) Close the leakage of PHP version information in the http header
In order to prevent hackers from obtaining the PHP version information in the server, we can close the leakage of the information in the http header In the header:expose_php = OffFor example, when a hacker telnet www.greatmo.com 80, he will not be able to see the PHP information.
(8) Turn off registration of global variables
Variables submitted in PHP, including variables submitted using POST or GET, will be automatically registered as global variables and can Direct access is very unsafe for the server, so we cannot let it be registered as a global variable, so we turn off the registration global variable option:register_globals = OffOf course, if this is set, then when getting the corresponding variable Reasonable methods must be used, such as obtaining the variable var submitted by GET, then $_GET['var'] must be used to obtain it. PHP programmers should pay attention to this.
(9) Open magic_quotes_gpc to prevent SQL injection
SQL injection is a very dangerous problem. In small cases, the website backend is invaded, and in more serious cases, the entire server collapses, so it must be be careful. There is a setting in php.ini:magic_quotes_gpc = OffThis is turned off by default. If it is turned on, it will automatically convert user-submitted queries to sql, such as converting ' to \', etc. This will prevent sql Injections make all the difference. Therefore, we recommend setting it to:
magic_quotes_gpc = On
(10) Error message control
Generally, PHP will prompt an error when it is not connected to the database or under other circumstances. General error messages It will contain the current path information of the php script or the SQL statement of the query. This kind of information is not safe after being provided to hackers, so it is generally recommended that the server disable error prompts:display_errors = OffIf you are To display error information, you must set the level of error display, for example, only display information above warnings:
error_reporting = E_WARNING & E_ERROROf course, I still recommend turning off error prompts.
The above is the detailed content of How to solve security problems in php. For more information, please follow other related articles on the PHP Chinese website!
ACID vs BASE Database: Differences and when to use each.Mar 26, 2025 pm 04:19 PMThe article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and
PHP Secure File Uploads: Preventing file-related vulnerabilities.Mar 26, 2025 pm 04:18 PMThe article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.
PHP Input Validation: Best practices.Mar 26, 2025 pm 04:17 PMArticle discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.
PHP API Rate Limiting: Implementation strategies.Mar 26, 2025 pm 04:16 PMThe article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand
PHP Password Hashing: password_hash and password_verify.Mar 26, 2025 pm 04:15 PMThe article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur
OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.Mar 26, 2025 pm 04:13 PMThe article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.
PHP XSS Prevention: How to protect against XSS.Mar 26, 2025 pm 04:12 PMThe article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.
PHP Interface vs Abstract Class: When to use each.Mar 26, 2025 pm 04:11 PMThe article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft






