Original Free Web Application Firewall, Open-Source.
- XSS Vulns Fixed.
- SQL Injection Fixed.
- Anti-Cookie-Steal Method.
- HTML Malicious Code's Vulns Fixed.
- CSRF Easy to use, and validation.
- Block HTML Upgraded.
- Lightweight.
- Array Support, All Bypass fixed.
- Advanced Bot validation, Browser Validation.
- Most Poc's SQLi and XSS.
- Security upgraded.
- Errors supression.
- Cloudflare and BlazingFast Support.
// Before all your code starts.
require('xwaf.php');
$xWAF = new xWAF();
$xWAF->start();
// Your code below.
// Before of all your CODE.
require('xwaf.php');
$xWAF = new xWAF();
// Cloudflare Mode [Optional]
$xWAF->useCloudflare();
// BlazingFast Mode [Optional]
$xWAF->useBlazingfast();
// Use Own IP Header [Optional]
$xWAF->customIPHeader('IP-Header');
// Anti-Cookie-Steal Method [Optional]
$xWAF->antiCookieSteal('username'); // For trigger if on PHPSESSID is logged.
// Check separated types.
$xWAF->checkGET();
$xWAF->checkPOST();
$xWAF->checkCOOKIE();
// Your code below.
Please read test.php
- Min: PHP5.3 (With common functions)