search
HomeOperation and MaintenanceNginxHow Nginx protects against web attacks by using the Application Firewall Module (WAF)

With the continuous development of the Internet, Web applications have become an indispensable part of many people's daily lives. However, various web attacks are followed, such as SQL injection, cross-site scripting, etc. These attacks may cause major security issues and seriously threaten the security and stability of web applications. In order to solve these problems, Nginx introduces the application firewall module (WAF). This article will introduce in detail how Nginx prevents web attacks by using the WAF module.

What is WAF?

Application firewall is a security control device for web applications that can defend against various attacks, such as SQL injection, XSS attacks, CSRF attacks, etc. WAF monitors websites and detects and defends against attacks through various means such as regular expressions, rule engines, and data signatures. By detecting requests, WAF can determine whether the request is malicious, prevent illegal access, and protect web applications from attacks.

Why do you need a WAF?

Although many web applications use various security measures to protect their own security, such as SSL, password strength verification, access control, etc., the risk of web attacks Unpredictability makes it easy for these measures to fail. For example, SQL injection attacks are one of the most common attacks today. Attackers can directly inject SQL statements by writing malicious code to manipulate the database or obtain sensitive information. In this case, using WAF can better protect the security of web applications and prevent database attacks or sensitive information from being stolen.

How to use WAF module to protect Nginx?

Nginx implements WAF functions by introducing third-party modules, and you can choose to use OpenResty, ModSecurity and other modules. The following uses the ModSecurity module as an example to introduce how to use the WAF module to protect Nginx.

  1. Install the ModSecurity module

You can install the ModSecurity module through the following command:

sudo apt-get install libmodsecurity3 libmodsecurity-dev

After the installation is complete, enter the Nginx core configuration file and add the following configuration:

location / {
    # 引入ModSecurity防火墙定义文件
    ModSecurityEnabled on;
    ModSecurityConfig /etc/nginx/modsec/modsecurity.conf;
}
  1. Configuring ModSecurity rules

The next step is to configure the rules for ModSecurity. You can choose to use an existing rule set such as OWASP, or write custom rules according to your own needs. We can create a new rules file in the /etc/nginx/modsec folder:

sudo nano /etc/nginx/modsec/modsecurity_custom_rules.conf

Edit the file to add custom rules, for example:

SecRuleEngine On
# 防止SQL注入
SecRule ARGS "@rx ((select|union|insert|update|drop|delete))" "id:1,deny,status:403,msg:'SQL Injection attempt'"

In the above example, we Added a rule to prevent SQL injection attacks. When a GET request contains the keywords "select", "union", "insert", "update", "drop", and "delete", ModSecurity will intercept the request and send a 403 error, indicating that access is denied.

  1. Restart the Nginx service

After completing the above steps, use the following command to restart the Nginx service:

sudo systemctl restart nginx

Now, Nginx can use the ModSecurity WAF module to Protect web applications from attacks.

Summary

WAF is one of the important components in preventing web attacks. As a high-performance web server, Nginx can not only improve its security after introducing the WAF module, but also effectively reduce the impact of web attacks on web applications. Depending on your needs, you can choose to use different WAF modules, such as ModSecurity, OpenResty, etc. When using WAF, you need to pay attention to configuring relevant rules according to the actual situation to ensure the defense effect.

The above is the detailed content of How Nginx protects against web attacks by using the Application Firewall Module (WAF). For more information, please follow other related articles on the PHP Chinese website!

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
Using NGINX Unit: Deploying and Managing ApplicationsUsing NGINX Unit: Deploying and Managing ApplicationsApr 22, 2025 am 12:06 AM

NGINXUnit can be used to deploy and manage applications in multiple languages. 1) Install NGINXUnit. 2) Configure it to run different types of applications such as Python and PHP. 3) Use its dynamic configuration function for application management. Through these steps, you can efficiently deploy and manage applications and improve project efficiency.

NGINX vs. Apache: A Comparative Analysis of Web ServersNGINX vs. Apache: A Comparative Analysis of Web ServersApr 21, 2025 am 12:08 AM

NGINX is more suitable for handling high concurrent connections, while Apache is more suitable for scenarios where complex configurations and module extensions are required. 1.NGINX is known for its high performance and low resource consumption, and is suitable for high concurrency. 2.Apache is known for its stability and rich module extensions, which are suitable for complex configuration needs.

NGINX Unit's Advantages: Flexibility and PerformanceNGINX Unit's Advantages: Flexibility and PerformanceApr 20, 2025 am 12:07 AM

NGINXUnit improves application flexibility and performance with its dynamic configuration and high-performance architecture. 1. Dynamic configuration allows the application configuration to be adjusted without restarting the server. 2. High performance is reflected in event-driven and non-blocking architectures and multi-process models, and can efficiently handle concurrent connections and utilize multi-core CPUs.

NGINX vs. Apache: Performance, Scalability, and EfficiencyNGINX vs. Apache: Performance, Scalability, and EfficiencyApr 19, 2025 am 12:05 AM

NGINX and Apache are both powerful web servers, each with unique advantages and disadvantages in terms of performance, scalability and efficiency. 1) NGINX performs well when handling static content and reverse proxying, suitable for high concurrency scenarios. 2) Apache performs better when processing dynamic content and is suitable for projects that require rich module support. The selection of a server should be decided based on project requirements and scenarios.

The Ultimate Showdown: NGINX vs. ApacheThe Ultimate Showdown: NGINX vs. ApacheApr 18, 2025 am 12:02 AM

NGINX is suitable for handling high concurrent requests, while Apache is suitable for scenarios where complex configurations and functional extensions are required. 1.NGINX adopts an event-driven, non-blocking architecture, and is suitable for high concurrency environments. 2. Apache adopts process or thread model to provide a rich module ecosystem that is suitable for complex configuration needs.

NGINX in Action: Examples and Real-World ApplicationsNGINX in Action: Examples and Real-World ApplicationsApr 17, 2025 am 12:18 AM

NGINX can be used to improve website performance, security, and scalability. 1) As a reverse proxy and load balancer, NGINX can optimize back-end services and share traffic. 2) Through event-driven and asynchronous architecture, NGINX efficiently handles high concurrent connections. 3) Configuration files allow flexible definition of rules, such as static file service and load balancing. 4) Optimization suggestions include enabling Gzip compression, using cache and tuning the worker process.

NGINX Unit: Supporting Different Programming LanguagesNGINX Unit: Supporting Different Programming LanguagesApr 16, 2025 am 12:15 AM

NGINXUnit supports multiple programming languages ​​and is implemented through modular design. 1. Loading language module: Load the corresponding module according to the configuration file. 2. Application startup: Execute application code when the calling language runs. 3. Request processing: forward the request to the application instance. 4. Response return: Return the processed response to the client.

Choosing Between NGINX and Apache: The Right Fit for Your NeedsChoosing Between NGINX and Apache: The Right Fit for Your NeedsApr 15, 2025 am 12:04 AM

NGINX and Apache have their own advantages and disadvantages and are suitable for different scenarios. 1.NGINX is suitable for high concurrency and low resource consumption scenarios. 2. Apache is suitable for scenarios where complex configurations and rich modules are required. By comparing their core features, performance differences, and best practices, you can help you choose the server software that best suits your needs.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool