mirror of
https://github.com/Safe3/uusec-waf.git
synced 2025-10-04 15:01:55 +08:00
### Feature Updates **Interface & Management** - Redesigned main program and management interface with improved aesthetics and usability, supports UI language switching (English/Chinese) - Added Rule Collections functionality: Create custom rule templates for batch configuration - Introduced whitelist rules that terminate further rule matching upon success - UUSEC WAF Rules API intelligent suggestions during advanced rule editing:ml-citation - New plugin management supporting hot-reloaded plugins to extend WAF capabilities **Protocol & Optimization** - Supports streaming responses for continuous data push (e.g., LLM stream outputs) - Enables Host header modification during proxying for upstream service access - Search engine validation: `waf.searchEngineValid(dns,ip,ua)` prevents high-frequency rules from affecting SEO indexing - Interception log report generation (HTML/PDF exports) - Automatic rotation of UUSEC WAF error/access logs to prevent performance issues **Security & Infrastructure** - Expanded free SSL certificate support: HTTP-01 & DNS-01 verification across 50+ domain providers - Customizable advanced WAF settings: HTTP2, GZIP, HTTP Caching, SSL protocols, etc - Cluster configuration: Manage UUSEC WAF nodes and ML servers via web UI
45 lines
No EOL
1.1 KiB
Lua
45 lines
No EOL
1.1 KiB
Lua
--[[
|
|
Rule name: Remote File Inclusion (RFI)
|
|
Filtering stage: Request phase
|
|
Threat level: Critical
|
|
Rule description: The File Inclusion vulnerability allows an attacker to include a file, usually exploiting a "dynamic file inclusion" mechanisms implemented in the target application
|
|
--]]
|
|
|
|
|
|
local kvFilter = waf.kvFilter
|
|
local rgx = waf.rgxMatch
|
|
local host = waf.host
|
|
local counter = waf.strCounter
|
|
local str_find = string.find
|
|
local str_sub = string.sub
|
|
|
|
local function rMatch(v)
|
|
local m = rgx(v, "^\\s*(?:(?:url|jar):)?(file|ftps?|gopher|ldap)://", "joi")
|
|
if m then
|
|
local i, j = str_find(v, waf.getRootDomain(host), 1, true)
|
|
if i then
|
|
if counter(str_sub(v, 1, j), "/") == 2 then
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
return m, v
|
|
end
|
|
|
|
local form = waf.form
|
|
if form then
|
|
local m, d = kvFilter(form["FORM"], rMatch)
|
|
if m then
|
|
return m, d, true
|
|
end
|
|
end
|
|
|
|
local queryString = waf.queryString
|
|
if queryString then
|
|
local m, d = kvFilter(queryString, rMatch)
|
|
if m then
|
|
return m, d, true
|
|
end
|
|
end
|
|
|
|
return false |