Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nbs-system/naxsi
NAXSI is an open-source, high performance, low rules maintenance WAF for NGINX
https://github.com/nbs-system/naxsi
c naxsi nginx waf
Last synced: 3 months ago
JSON representation
NAXSI is an open-source, high performance, low rules maintenance WAF for NGINX
- Host: GitHub
- URL: https://github.com/nbs-system/naxsi
- Owner: nbs-system
- License: gpl-3.0
- Archived: true
- Created: 2011-08-19T09:48:20.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2023-11-08T09:27:13.000Z (about 1 year ago)
- Last Synced: 2024-03-27T00:49:47.723Z (9 months ago)
- Topics: c, naxsi, nginx, waf
- Language: C
- Homepage:
- Size: 1.95 MB
- Stars: 4,768
- Watchers: 230
- Forks: 608
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-repositories - nbs-system/naxsi - NAXSI is an open-source, high performance, low rules maintenance WAF for NGINX (C)
- awesome-resty - NAXSI - source, high performance, low rules maintenance WAF for NGINX; NAXSI means Nginx Anti Xss & Sql Injection (Modules)
README
![naxsi](https://raw.githubusercontent.com/nbs-system/naxsi/master/logo.png)
# Project Status
This is a project status update regarding Naxsi.
**As you may have noticed, the development of Naxsi has been stopped and the repository will be archived for historical reasons. This means that no new updates or bug fixes will be released for this version.**
However, if you wish to update to newer versions of Naxsi, we recommend that you use the new repository at https://github.com/wargio/naxsi. This repository has been actively maintained and updated with new features and bug fixes.
We understand that this news may be disappointing for some of our users who have been relying on Naxsi for their web application security needs. We want to assure you that we are committed to providing the best possible solutions for your security needs and encourage you to explore our security products.
Thank you for your understanding and continued support.
## What is Naxsi?
NAXSI means [Nginx](http://nginx.org/) Anti [XSS](https://www.owasp.org/index.php/Cross-site_Scripting_%28XSS%29) & [SQL Injection](https://www.owasp.org/index.php/SQL_injection).
Technically, it is a third party nginx module, available as a package for
many UNIX-like platforms. This module, by default, reads a small subset of
[simple (and readable) rules](https://github.com/nbs-system/naxsi/blob/master/naxsi_config/naxsi_core.rules)
containing 99% of known patterns involved in
website vulnerabilities. For example, `<`, `|` or `drop` are not supposed
to be part of a URI.Being very simple, those patterns may match legitimate queries, it is
the Naxsi's administrator duty to add specific rules that will whitelist
legitimate behaviours. The administrator can either add whitelists manually
by analyzing nginx's error log, or (recommended) start the project with an
intensive auto-learning phase that will automatically generate whitelisting
rules regarding a website's behaviour.In short, Naxsi behaves like a DROP-by-default firewall, the only task
is to add required ACCEPT rules for the target website to work properly.## Why is it different?
Contrary to most Web Application Firewalls, Naxsi doesn't rely on a
signature base like an antivirus, and thus cannot be circumvented by an
"unknown" attack pattern.
Naxsi is [Free software](https://www.gnu.org/licenses/gpl.html) (as in freedom)
and free (as in free beer) to use.## What does it run on?
Naxsi should be compatible with any nginx version.It depends on `libpcre` for its regexp support, and is reported to work great on NetBSD, FreeBSD, OpenBSD, Debian, Ubuntu and CentOS.