代码拉取完成,页面将自动刷新
同步操作将从 bukale/zhongkui-waf 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
local sensitive = require "sensitive"
local config = require "config"
local ngxfind = ngx.re.find
local gsub = string.gsub
local CONTENT_TYPE_REGEX = "^(?:text/html|text/plain|text/xml|application/json|application/xml|application/xhtml\\+xml)"
local HTML_CONTENT_TYPE_REGEX = "^(?:text/html|application/xhtml\\+xml)"
local TRAP_URI = config.botTrapUri
local TRAP_HTML = '<a href="' .. TRAP_URI .. '" class="honeyLink">come-here</a><style>.honeyLink{display:none;}</style></body>'
local content = ngx.arg[1]
if config.isWAFOn and config.isProtectionMode then
if ngx.status ~= 403 then
local contentType = ngx.header.content_type or ''
if config.isSensitiveDataFilteringOn then
if contentType then
local from = ngxfind(contentType, CONTENT_TYPE_REGEX, "isjo")
if from then
if content then
content = sensitive.sensitive_data_filtering(content)
end
end
end
end
if config.isBotOn and config.isBotTrapOn then
if contentType then
local from = ngxfind(contentType, HTML_CONTENT_TYPE_REGEX, "isjo")
if from then
if content then
content = gsub(content, '</body>', TRAP_HTML)
end
end
end
end
end
end
ngx.arg[1] = content
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。