Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/sech0us3/waf-checker
Vulnerability ScannersIDS/IPS EvasionWeb Application ExploitationAPI Security TestingInformation GatheringWAF BypassWeb SecurityPenetration TestingRed Teaming
GitHubsech0us3/waf-checker

waf-checker

View Repository
331077h 59m agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

WAF Checker

This project helps you check how well your Web Application Firewall (WAF) protects your product against common web attacks. It can be run as a Cloudflare Worker (with a built-in interactive Web UI) or as a standalone Node.js CLI tool.

Features

Core Testing

  • Enter a target URL, pick HTTP methods (GET, POST, etc.), and attack categories.
  • Sends requests with attack payloads (in parameters, headers, or as file paths).
  • Color-coded terminal and web results: 🟢 403/BLOCKED = blocked, 🔴 2xx/5xx = potential bypass, 🟠 3xx = redirect.
  • Results displayed in a filterable table with details for each payload.

Attack Categories (19 total)

SQL Injection, XSS, Path Traversal, Command Injection, SSRF, NoSQL Injection, Local File Inclusion, LDAP Injection, HTTP Request Smuggling, Open Redirect, Sensitive Files, CRLF Injection, UTF8/Unicode Bypass, XXE, SSTI, HTTP Parameter Pollution, Web Cache Poisoning, IP Bypass, User-Agent.

WAF Detection

  • Auto-detect WAF type before testing (Cloudflare, AWS WAF, ModSecurity, Akamai, Imperva, F5 BIG-IP, etc.).
  • Suggests specific bypass techniques based on detected WAF.
  • Can auto-switch to WAF-specific advanced payloads.

Advanced Payloads & Encoding

  • WAF Bypass Payloads — double encoding, unicode, mixed case, comment injection, polyglot payloads.
  • Enhanced Payloads — modern evasion techniques.
  • Encoding Variations — URL, Unicode, HTML Entity, Hex, Octal, Base64 encoding with automatic combinations.
  • WAF-specific bypasses for Cloudflare, AWS WAF, ModSecurity.

HTTP Protocol Manipulation

  • HTTP Verb Tampering — test uncommon HTTP methods.
  • Parameter Pollution — duplicate and split parameters across query/body.
  • Content-Type Confusion — alternate content types to bypass rules.
  • Request Smuggling headers.
  • Host Header Injection variations.
  • HTTP Method Override via headers (X-HTTP-Method-Override, etc.).

Batch Testing

  • Test multiple URLs at once.
  • Configurable concurrency and delay between requests.
  • Real-time progress tracking.

Project Structure

The project is structured as an NPM Workspaces monorepo:

  • packages/core/: The core security testing library, payloads definition, WAF fingerprinting signatures, and obfuscation encoders.
  • packages/worker/: Cloudflare Worker package serving the static HTML/JS Web UI and JSON API endpoints.
  • packages/cli/: Node.js command-line interface tool for executing audits directly from your terminal.

Installation & Building

From the root directory, install dependencies and build all workspaces:

root@kitploit:~
npm install
npm run build

How to Run

1. Web Version (Cloudflare Worker)

To run the Worker dev server locally (requires Wrangler):

root@kitploit:~
npm run dev:worker

The Web UI will be accessible at http://localhost:8787 (or another port if 8787 is occupied).

To deploy the Worker to Cloudflare:

root@kitploit:~
npx wrangler deploy --workspace=packages/worker

2. CLI Version (Node.js)

To run security testing audits directly from your command line:

root@kitploit:~
# Print general CLI help and usage
node packages/cli/dist/index.js --help

# Print check command help (lists all methods, categories, and WAF vendors)
node packages/cli/dist/index.js check --help

WAF Detection

Detect the WAF vendor behind a target URL:

root@kitploit:~
node packages/cli/dist/index.js detect <url>

Vulnerability payload audit

Run an audit against a target URL:

root@kitploit:~
# Default check (GET method, all payload categories)
node packages/cli/dist/index.js check https://example.com

# Custom check with specific methods, categories, and WAF evasion enabled
node packages/cli/dist/index.js check https://example.com -m GET,POST -c "SQL Injection,XSS" --auto-detect-waf --encoding-variations

Batch Audits

Run batch audits for a list of URLs defined in a file:

root@kitploit:~
node packages/cli/dist/index.js batch targets.txt --concurrency 3

3. Docker Version

You can run the CLI using Docker, either by pulling the pre-built image from GitHub Container Registry or by building it locally.

Using Pre-built Image (Recommended)

The pre-built Docker image is available on GitHub Container Registry at ghcr.io/sech0us3/waf-checker-cli.

Pull the image
root@kitploit:~
docker pull ghcr.io/sech0us3/waf-checker-cli:latest
Print help
root@kitploit:~
docker run --rm ghcr.io/sech0us3/waf-checker-cli:latest --help
Run a check
root@kitploit:~
docker run --rm -it ghcr.io/sech0us3/waf-checker-cli:latest check https://example.com
Run batch audits (mounting a local directory)
root@kitploit:~
docker run --rm -it -v "$(pwd):/data" ghcr.io/sech0us3/waf-checker-cli:latest batch /data/targets.txt --concurrency 3

Building Locally

Build the image
root@kitploit:~
docker build -t waf-checker-cli .
Print help
root@kitploit:~
docker run --rm waf-checker-cli --help
Run a check
root@kitploit:~
docker run --rm -it waf-checker-cli check https://example.com
Run batch audits (mounting a local directory)
root@kitploit:~
docker run --rm -it -v "$(pwd):/data" waf-checker-cli batch /data/targets.txt --concurrency 3

Testing

To run the workspace-wide test suite (utilizing Vitest):

root@kitploit:~
npm test

Read my blog at yoursec.substack.com

Download Tool