License & Deployment Mix: 16 tools – 9 OSS, 2 SaaS. (OSS and SaaS counts can overlap when an open-source tool also offers a vendor-hosted edition.)

Overview

A Web Application Firewall (WAF) inspects HTTP/HTTPS traffic between clients and web applications to detect and block attacks at the application layer (OSI Layer 7). Unlike network firewalls that operate at Layers 3-4, a WAF understands HTTP semantics – headers, cookies, query parameters, request bodies, JSON/XML payloads – and applies rules to block malicious requests before they reach the application.

WAF platforms protect against:

  • SQL injection – malicious SQL in form fields, query strings, or headers that manipulates database queries
  • Cross-site scripting (XSS) – injected scripts that execute in other users’ browsers
  • Cross-site request forgery (CSRF) – forged requests that trick authenticated users into performing unwanted actions
  • Remote code execution (RCE) – payloads that exploit application vulnerabilities to execute arbitrary commands
  • Path traversal – requests that access files outside the web root (e.g., ../../etc/passwd)
  • HTTP request smuggling – malformed requests that exploit differences between front-end and back-end HTTP parsing
  • Bot management – distinguishing legitimate users from bots, scrapers, and credential stuffers
  • API abuse – rate limiting, schema validation, and anomaly detection for REST/GraphQL APIs
  • DDoS mitigation – Layer 7 DDoS protection (HTTP floods, slowloris, application-specific attacks)

WAFs typically operate in one of three modes:

  • Reverse proxy – WAF sits between the client and the origin server; all traffic passes through the WAF
  • Embedded module – WAF runs as a module inside the web server (e.g., ModSecurity in Nginx/Apache)
  • Cloud / CDN-based – WAF runs at the CDN edge; traffic is filtered before reaching the origin

The information on these pages was researched by a combination of human review and large language models. To suggest an addition or correction, please contact us. Prepared by Rhodium Systems Inc., author of the ResorsIT platform — a unified IT operations management platform for IT teams and MSPs that integrates a curated suite of open-source, commercial, and SaaS applications into a single system with shared identity, single sign-on, access control, and a common audit trail. Use this catalogue only as a starting point for your own research, and review any tool carefully against your own requirements before relying on it. Catalogue data version 2026.197.

Comparison


Deployment Model

ToolTypeSelf-HostedSaaS/CloudLicense
ModSecurityModuleYesNoApache 2.0
CorazaModule / SidecarYesNoApache 2.0
BunkerWebReverse proxyYesNoAGPL-3.0
SafeLineReverse proxyYesNoApache 2.0
open-appsecModule / SidecarYesYesApache 2.0
NaxsiModuleYesNoGPL-3.0
CuriefenseEnvoy filterYesNoApache 2.0
Shadow DaemonApp connectorYesNoGPL-2.0
OWASP CRSRule setYesN/AApache 2.0
Cloudflare WAFCDN edgeNoYesProprietary
AWS WAFCloudNoYesProprietary
Azure WAFCloudNoYesProprietary
Fastly WAFCDN edgeNoYesProprietary
Akamai KonaCDN edgeNoYesProprietary
Imperva WAFCloudNoYesProprietary
F5 NGINX App ProtectModuleYesNoProprietary

Detection Capabilities

ToolOWASP CRSCustom RulesML/AIBot MgmtAPI Protection
ModSecurityYesYes (SecRule)NoNoLimited
CorazaYesYes (SecRule)NoNoLimited
BunkerWebYesYesNoYesLimited
SafeLineNo (own engine)YesYesYesYes
open-appsecNo (ML-based)YesYesNoYes
NaxsiNo (whitelist)YesNoNoNo
Cloudflare WAFYes*YesYesYesYes
AWS WAFYes*YesYesYesYes
Fastly WAFNo (SmartParse)YesYesYesYes
Imperva WAFYes*YesYesYesYes
F5 NAPNo (own sigs)YesYesYesYes

* = managed rule sets based on or inspired by OWASP CRS


Traefik Integration

ToolIntegration MethodComplexity
ModSecurityTraefik plugin (community)Medium
CorazaTraefik Coraza plugin (native Go)Low
BunkerWebSeparate Nginx in front of TraefikHigh
SafeLineSeparate proxy in front of TraefikHigh
open-appsecNginx/Kong module; separate from TraefikHigh
Cloudflare WAFDNS proxy in front of TraefikLow
AWS WAFALB/CloudFront in front of TraefikMedium

Recommended default: Coraza plugin for Traefik (lowest integration complexity, Go-native, OWASP CRS compatible) or Cloudflare WAF for internet-facing deployments.


SSO / Authentik Integration

ToolOIDCSAMLNotes
BunkerWebNoNoWeb UI; forward-auth via Traefik
SafeLineNoNoWeb UI; forward-auth via Traefik
Cloudflare WAFYesYesCloudflare Zero Trust SSO
AWS WAFYesYesAWS IAM / SSO
Azure WAFYesYesEntra ID SSO
Imperva WAFNoYesSAML for cloud console
Fastly WAFNoYesSAML for dashboard

OSS WAFs (ModSecurity, Coraza, Naxsi) have no admin UI and therefore no SSO requirement.


Performance

ToolLatency ImpactThroughputNotes
ModSecurityMediumMediumPerl regex engine; CRS can be heavy
CorazaLowHighGo; faster than ModSecurity
NaxsiLowHighLightweight whitelist model
Cloudflare WAFVery lowVery highEdge processing; no origin latency
AWS WAFLowHighEvaluated at ALB/CloudFront

Tools

16 tools.

Akamai Kona Site Defender

Akamai Kona Site Defender (now part of Akamai App & API Protector) is an enterprise-grade cloud WAF delivered through Akamai’s global edge platform.

License: Proprietary (proprietary) · Kind: web · Deploy: saas · SSO: none

Website

AWS WAF

AWS WAF is Amazon Web Services’ cloud-native web application firewall. It integrates directly with AWS services (CloudFront, Application Load Balancer, API Gateway, AppSync) to inspect HTTP/HTTPS traffic at the edge or at the load balancer…

License: Proprietary (proprietary) · Kind: web · Deploy: saas · SSO: none

Website

Azure WAF

Azure WAF is Microsoft’s cloud-native web application firewall, available on Azure Application Gateway and Azure Front Door.

License: Proprietary (proprietary) · Kind: web · Deploy: saas · SSO: none

Website

BunkerWeb

BunkerWeb is an open-source web application firewall and reverse proxy built on Nginx, integrating ModSecurity with the OWASP Core Rule Set plus bot management, rate limiting, and automatic HTTPS via a web UI.

License: AGPL-3.0-only (OSS) · Kind: web · Deploy: docker, k8s · SSO: none

Website · Source

Cloudflare WAF

Cloudflare WAF is a cloud-based web application firewall integrated into Cloudflare’s global CDN and security platform.

License: Proprietary (proprietary) · Kind: web · Deploy: saas · SSO: none

Website

Coraza

Coraza is a modern, open-source web application firewall engine written in Go, reimplementing ModSecurity’s SecRule language with full OWASP Core Rule Set compatibility; a CNCF Sandbox project.

License: Apache-2.0 (OSS) · Kind: web · Deploy: saas, docker, k8s · SSO: none

Website · Source

Curiefense

Curiefense is a cloud-native web application firewall and bot management platform built on Envoy Proxy. It was created by Reblaze (an application security company) and donated to the CNCF as a Sandbox project.

License: Apache-2.0 (OSS) · Kind: web · Deploy: k8s · SSO: none

Website · Source

F5 NGINX App Protect

F5 NGINX App Protect (NAP) is a commercial web application firewall that brings F5’s enterprise- grade BIG-IP Advanced WAF detection engine to the NGINX Plus platform.

License: Proprietary (proprietary) · Kind: web · Deploy: docker · SSO: none

Website

Fastly WAF / Signal Sciences

Fastly WAF (formerly Signal Sciences, acquired by Fastly in 2020) is a next-generation web application firewall that uses a patented SmartParse detection engine instead of traditional regex pattern matching.

License: Proprietary (proprietary) · Kind: web · Deploy: saas · SSO: none

Website

Imperva WAF

Imperva (formerly Imperva SecureSphere, acquired by Thales in 2023) is a long-established application security vendor offering both cloud-based and on-premises WAF products.

License: Proprietary (proprietary) · Kind: web · Deploy: native, saas · SSO: none

Website

ModSecurity

ModSecurity is the original open-source web application firewall engine, first released in 2002 by Ivan Ristic as an Apache HTTP Server module.

License: Apache-2.0 (OSS) · Kind: web · Deploy: docker, k8s · SSO: none

Website · Source

Naxsi

Naxsi (Nginx Anti XSS & SQL Injection) is a lightweight, whitelist-based web application firewall module for Nginx.

License: GPL-3.0-only (OSS) · Kind: web · Deploy: docker, package · SSO: none

Website · Source

open-appsec

open-appsec is a machine-learning-based web application firewall and API security platform that uses contextual ML models instead of traditional signature/rule-based detection.

License: Apache-2.0 (OSS) · Kind: web · Deploy: k8s · SSO: none

Website · Source

OWASP Core Rule Set (CRS)

The OWASP Core Rule Set (CRS) is the standard open-source rule set for ModSecurity-compatible web application firewalls. It provides generic attack detection rules that protect against the OWASP Top 10 and many other attack categories.

License: Apache-2.0 (OSS) · Kind: web · Deploy: saas, docker · SSO: none

Website · Source

SafeLine

SafeLine is a modern web application firewall developed by Chaitin Technology, a Chinese cybersecurity company founded in 2014.

License: Apache-2.0 (OSS) · Kind: web · Deploy: docker · SSO: none

Website · Source

Shadow Daemon

Shadow Daemon is an application-level web application firewall that operates inside the application runtime rather than at the network/proxy layer.

License: GPL-2.0-only (OSS) · Kind: web · Deploy: docker, package · SSO: none

Website · Source

ResorsIT Tools Catalog Search