添加block time
parent
6a38f4fe2d
commit
de95c77575
276
README.md
276
README.md
|
@ -1,138 +1,138 @@
|
||||||
##ngx_lua_waf
|
##ngx_lua_waf
|
||||||
|
|
||||||
ngx_lua_waf是我刚入职趣游时候开发的一个基于ngx_lua的web应用防火墙。
|
ngx_lua_waf是我刚入职趣游时候开发的一个基于ngx_lua的web应用防火墙。
|
||||||
|
|
||||||
代码很简单,开发初衷主要是使用简单,高性能和轻量级。
|
代码很简单,开发初衷主要是使用简单,高性能和轻量级。
|
||||||
|
|
||||||
现在开源出来,遵从MIT许可协议。其中包含我们的过滤规则。如果大家有什么建议和想fa,欢迎和我一起完善。
|
现在开源出来,遵从MIT许可协议。其中包含我们的过滤规则。如果大家有什么建议和想fa,欢迎和我一起完善。
|
||||||
|
|
||||||
###用途:
|
###用途:
|
||||||
|
|
||||||
防止sql注入,本地包含,部分溢出,fuzzing测试,xss,SSRF等web攻击
|
防止sql注入,本地包含,部分溢出,fuzzing测试,xss,SSRF等web攻击
|
||||||
防止svn/备份之类文件泄漏
|
防止svn/备份之类文件泄漏
|
||||||
防止ApacheBench之类压力测试工具的攻击
|
防止ApacheBench之类压力测试工具的攻击
|
||||||
屏蔽常见的扫描黑客工具,扫描器
|
屏蔽常见的扫描黑客工具,扫描器
|
||||||
屏蔽异常的网络请求
|
屏蔽异常的网络请求
|
||||||
屏蔽图片附件类目录php执行权限
|
屏蔽图片附件类目录php执行权限
|
||||||
防止webshell上传
|
防止webshell上传
|
||||||
|
|
||||||
###推荐安装:
|
###推荐安装:
|
||||||
|
|
||||||
推荐使用lujit2.1做lua支持
|
推荐使用lujit2.1做lua支持
|
||||||
|
|
||||||
ngx_lua如果是0.9.2以上版本,建议正则过滤函数改为ngx.re.find,匹配效率会提高三倍左右。
|
ngx_lua如果是0.9.2以上版本,建议正则过滤函数改为ngx.re.find,匹配效率会提高三倍左右。
|
||||||
|
|
||||||
|
|
||||||
###使用说明:
|
###使用说明:
|
||||||
|
|
||||||
nginx安装路径假设为:/usr/local/nginx/conf/
|
nginx安装路径假设为:/usr/local/nginx/conf/
|
||||||
|
|
||||||
把ngx_lua_waf下载到conf目录下,解压命名为waf
|
把ngx_lua_waf下载到conf目录下,解压命名为waf
|
||||||
|
|
||||||
在nginx.conf的http段添加
|
在nginx.conf的http段添加
|
||||||
|
|
||||||
lua_package_path "/usr/local/nginx/conf/waf/?.lua";
|
lua_package_path "/usr/local/nginx/conf/waf/?.lua";
|
||||||
lua_shared_dict limit 10m;
|
lua_shared_dict limit 10m;
|
||||||
init_by_lua_file /usr/local/nginx/conf/waf/init.lua;
|
init_by_lua_file /usr/local/nginx/conf/waf/init.lua;
|
||||||
access_by_lua_file /usr/local/nginx/conf/waf/waf.lua;
|
access_by_lua_file /usr/local/nginx/conf/waf/waf.lua;
|
||||||
|
|
||||||
配置config.lua里的waf规则目录(一般在waf/conf/目录下)
|
配置config.lua里的waf规则目录(一般在waf/conf/目录下)
|
||||||
|
|
||||||
RulePath = "/usr/local/nginx/conf/waf/wafconf/"
|
RulePath = "/usr/local/nginx/conf/waf/wafconf/"
|
||||||
|
|
||||||
绝对路径如有变动,需对应修改
|
绝对路径如有变动,需对应修改
|
||||||
|
|
||||||
然后重启nginx即可
|
然后重启nginx即可
|
||||||
|
|
||||||
|
|
||||||
###配置文件详细说明:
|
###配置文件详细说明:
|
||||||
|
|
||||||
RulePath = "/usr/local/nginx/conf/waf/wafconf/"
|
RulePath = "/usr/local/nginx/conf/waf/wafconf/"
|
||||||
--规则存放目录
|
--规则存放目录
|
||||||
attacklog = "off"
|
attacklog = "off"
|
||||||
--是否开启攻击信息记录,需要配置logdir
|
--是否开启攻击信息记录,需要配置logdir
|
||||||
logdir = "/usr/local/nginx/logs/hack/"
|
logdir = "/usr/local/nginx/logs/hack/"
|
||||||
--log存储目录,该目录需要用户自己新建,切需要nginx用户的可写权限
|
--log存储目录,该目录需要用户自己新建,切需要nginx用户的可写权限
|
||||||
UrlDeny="on"
|
UrlDeny="on"
|
||||||
--是否拦截url访问
|
--是否拦截url访问
|
||||||
Redirect="on"
|
Redirect="on"
|
||||||
--是否拦截后重定向
|
--是否拦截后重定向
|
||||||
CookieMatch = "on"
|
CookieMatch = "on"
|
||||||
--是否拦截cookie攻击
|
--是否拦截cookie攻击
|
||||||
postMatch = "on"
|
postMatch = "on"
|
||||||
--是否拦截post攻击
|
--是否拦截post攻击
|
||||||
whiteModule = "on"
|
whiteModule = "on"
|
||||||
--是否开启URL白名单
|
--是否开启URL白名单
|
||||||
black_fileExt={"php","jsp"}
|
black_fileExt={"php","jsp"}
|
||||||
--填写可上传文件后缀类型
|
--填写可上传文件后缀类型
|
||||||
ipWhitelist={"127.0.0.1"}
|
ipWhitelist={"127.0.0.1"}
|
||||||
--ip白名单,多个ip用逗号分隔
|
--ip白名单,多个ip用逗号分隔
|
||||||
ipBlocklist={"1.0.0.1"}
|
ipBlocklist={"1.0.0.1"}
|
||||||
--ip黑名单,多个ip用逗号分隔
|
--ip黑名单,多个ip用逗号分隔
|
||||||
CCDeny="on"
|
CCDeny="on"
|
||||||
--是否开启拦截cc攻击(需要nginx.conf的http段增加lua_shared_dict limit 10m;)
|
--是否开启拦截cc攻击(需要nginx.conf的http段增加lua_shared_dict limit 10m;)
|
||||||
CCrate = "100/60"
|
CCrate = "100/60"
|
||||||
--设置cc攻击频率,单位为秒.
|
--设置cc攻击频率,单位为秒.
|
||||||
--默认1分钟同一个IP只能请求同一个地址100次
|
--默认1分钟同一个IP只能请求同一个地址100次
|
||||||
html=[[Please go away~~]]
|
html=[[Please go away~~]]
|
||||||
--警告内容,可在中括号内自定义
|
--警告内容,可在中括号内自定义
|
||||||
备注:不要乱动双引号,区分大小写
|
备注:不要乱动双引号,区分大小写
|
||||||
|
|
||||||
###检查规则是否生效
|
###检查规则是否生效
|
||||||
|
|
||||||
部署完毕可以尝试如下命令:
|
部署完毕可以尝试如下命令:
|
||||||
|
|
||||||
curl http://xxxx/test.php?id=../etc/passwd
|
curl http://xxxx/test.php?id=../etc/passwd
|
||||||
返回"Please go away~~"字样,说明规则生效。
|
返回"Please go away~~"字样,说明规则生效。
|
||||||
|
|
||||||
注意:默认,本机在白名单不过滤,可自行调整config.lua配置
|
注意:默认,本机在白名单不过滤,可自行调整config.lua配置
|
||||||
|
|
||||||
|
|
||||||
###效果图如下:
|
###效果图如下:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
###规则更新:
|
###规则更新:
|
||||||
|
|
||||||
考虑到正则的缓存问题,动态规则会影响性能,所以暂没用共享内存字典和redis之类东西做动态管理。
|
考虑到正则的缓存问题,动态规则会影响性能,所以暂没用共享内存字典和redis之类东西做动态管理。
|
||||||
|
|
||||||
规则更新可以把规则文件放置到其他服务器,通过crontab任务定时下载来更新规则,nginx reload即可生效。以保障ngx lua waf的高性能。
|
规则更新可以把规则文件放置到其他服务器,通过crontab任务定时下载来更新规则,nginx reload即可生效。以保障ngx lua waf的高性能。
|
||||||
|
|
||||||
只记录过滤日志,不开启过滤,在代码里在check前面加上--注释即可,如果需要过滤,反之
|
只记录过滤日志,不开启过滤,在代码里在check前面加上--注释即可,如果需要过滤,反之
|
||||||
|
|
||||||
###一些说明:
|
###一些说明:
|
||||||
|
|
||||||
过滤规则在wafconf下,可根据需求自行调整,每条规则需换行,或者用|分割
|
过滤规则在wafconf下,可根据需求自行调整,每条规则需换行,或者用|分割
|
||||||
|
|
||||||
global是全局过滤文件,里面的规则对post和get都过滤
|
global是全局过滤文件,里面的规则对post和get都过滤
|
||||||
get是只在get请求过滤的规则
|
get是只在get请求过滤的规则
|
||||||
post是只在post请求过滤的规则
|
post是只在post请求过滤的规则
|
||||||
whitelist是白名单,里面的url匹配到不做过滤
|
whitelist是白名单,里面的url匹配到不做过滤
|
||||||
user-agent是对user-agent的过滤规则
|
user-agent是对user-agent的过滤规则
|
||||||
|
|
||||||
|
|
||||||
默认开启了get和post过滤,需要开启cookie过滤的,编辑waf.lua取消部分--注释即可
|
默认开启了get和post过滤,需要开启cookie过滤的,编辑waf.lua取消部分--注释即可
|
||||||
|
|
||||||
日志文件名称格式如下:虚拟主机名_sec.log
|
日志文件名称格式如下:虚拟主机名_sec.log
|
||||||
|
|
||||||
|
|
||||||
## Copyright
|
## Copyright
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Weibo</td><td>神奇的魔法师</td>
|
<td>Weibo</td><td>神奇的魔法师</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Forum</td><td>http://bbs.linuxtone.org/</td>
|
<td>Forum</td><td>http://bbs.linuxtone.org/</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Copyright</td><td>Copyright (c) 2013- loveshell</td>
|
<td>Copyright</td><td>Copyright (c) 2013- loveshell</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>License</td><td>MIT License</td>
|
<td>License</td><td>MIT License</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
感谢ngx_lua模块的开发者[@agentzh](https://github.com/agentzh/),春哥是我所接触过开源精神最好的人
|
感谢ngx_lua模块的开发者[@agentzh](https://github.com/agentzh/),春哥是我所接触过开源精神最好的人
|
||||||
|
|
|
@ -11,6 +11,7 @@ ipWhitelist={"127.0.0.1"}
|
||||||
ipBlocklist={"1.0.0.1"}
|
ipBlocklist={"1.0.0.1"}
|
||||||
CCDeny="off"
|
CCDeny="off"
|
||||||
CCrate="100/60"
|
CCrate="100/60"
|
||||||
|
DenySeconds="600"
|
||||||
html=[[
|
html=[[
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
|
23
init.lua
23
init.lua
|
@ -14,6 +14,7 @@ PathInfoFix = optionIsOn(PathInfoFix)
|
||||||
attacklog = optionIsOn(attacklog)
|
attacklog = optionIsOn(attacklog)
|
||||||
CCDeny = optionIsOn(CCDeny)
|
CCDeny = optionIsOn(CCDeny)
|
||||||
Redirect=optionIsOn(Redirect)
|
Redirect=optionIsOn(Redirect)
|
||||||
|
|
||||||
function getClientIp()
|
function getClientIp()
|
||||||
IP = ngx.req.get_headers()["X-Real-IP"]
|
IP = ngx.req.get_headers()["X-Real-IP"]
|
||||||
if IP == nil then
|
if IP == nil then
|
||||||
|
@ -24,6 +25,7 @@ function getClientIp()
|
||||||
end
|
end
|
||||||
return IP
|
return IP
|
||||||
end
|
end
|
||||||
|
|
||||||
function write(logfile,msg)
|
function write(logfile,msg)
|
||||||
local fd = io.open(logfile,"ab")
|
local fd = io.open(logfile,"ab")
|
||||||
if fd == nil then return end
|
if fd == nil then return end
|
||||||
|
@ -31,6 +33,7 @@ function write(logfile,msg)
|
||||||
fd:flush()
|
fd:flush()
|
||||||
fd:close()
|
fd:close()
|
||||||
end
|
end
|
||||||
|
|
||||||
function log(method,url,data,ruletag)
|
function log(method,url,data,ruletag)
|
||||||
if attacklog then
|
if attacklog then
|
||||||
local realIp = getClientIp()
|
local realIp = getClientIp()
|
||||||
|
@ -46,7 +49,8 @@ function log(method,url,data,ruletag)
|
||||||
write(filename,line)
|
write(filename,line)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
------------------------------------规则读取函数-------------------------------------------------------------------
|
|
||||||
|
------------------------------------规则读取函数-----------------------------------------
|
||||||
function read_rule(var)
|
function read_rule(var)
|
||||||
file = io.open(rulepath..'/'..var,"r")
|
file = io.open(rulepath..'/'..var,"r")
|
||||||
if file==nil then
|
if file==nil then
|
||||||
|
@ -89,6 +93,7 @@ function whiteurl()
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
function fileExtCheck(ext)
|
function fileExtCheck(ext)
|
||||||
local items = Set(black_fileExt)
|
local items = Set(black_fileExt)
|
||||||
ext=string.lower(ext)
|
ext=string.lower(ext)
|
||||||
|
@ -102,11 +107,13 @@ function fileExtCheck(ext)
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
function Set (list)
|
function Set (list)
|
||||||
local set = {}
|
local set = {}
|
||||||
for _, l in ipairs(list) do set[l] = true end
|
for _, l in ipairs(list) do set[l] = true end
|
||||||
return set
|
return set
|
||||||
end
|
end
|
||||||
|
|
||||||
function args()
|
function args()
|
||||||
for _,rule in pairs(argsrules) do
|
for _,rule in pairs(argsrules) do
|
||||||
local args = ngx.req.get_uri_args()
|
local args = ngx.req.get_uri_args()
|
||||||
|
@ -155,6 +162,7 @@ function ua()
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
function body(data)
|
function body(data)
|
||||||
for _,rule in pairs(postrules) do
|
for _,rule in pairs(postrules) do
|
||||||
if rule ~="" and data~="" and ngxmatch(unescape(data),rule,"isjo") then
|
if rule ~="" and data~="" and ngxmatch(unescape(data),rule,"isjo") then
|
||||||
|
@ -165,6 +173,7 @@ function body(data)
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
function cookie()
|
function cookie()
|
||||||
local ck = ngx.var.http_cookie
|
local ck = ngx.var.http_cookie
|
||||||
if CookieCheck and ck then
|
if CookieCheck and ck then
|
||||||
|
@ -186,10 +195,18 @@ function denycc()
|
||||||
CCseconds=tonumber(string.match(CCrate,'/(.*)'))
|
CCseconds=tonumber(string.match(CCrate,'/(.*)'))
|
||||||
local token = getClientIp()..uri
|
local token = getClientIp()..uri
|
||||||
local limit = ngx.shared.limit
|
local limit = ngx.shared.limit
|
||||||
local req,_=limit:get(token)
|
local req,_ = limit:get(token)
|
||||||
|
local ip = getClientIp
|
||||||
|
local block,_ = limit:get(ip)
|
||||||
|
|
||||||
|
if block then
|
||||||
|
ngx.exit(503)
|
||||||
|
end
|
||||||
|
|
||||||
if req then
|
if req then
|
||||||
if req > CCcount then
|
if req > CCcount then
|
||||||
ngx.exit(503)
|
limit:set(ip,1,DenySeconds)
|
||||||
|
ngx.exit(503)
|
||||||
return true
|
return true
|
||||||
else
|
else
|
||||||
limit:incr(token,1)
|
limit:incr(token,1)
|
||||||
|
|
1
waf.lua
1
waf.lua
|
@ -1,6 +1,7 @@
|
||||||
local content_length=tonumber(ngx.req.get_headers()['content-length'])
|
local content_length=tonumber(ngx.req.get_headers()['content-length'])
|
||||||
local method=ngx.req.get_method()
|
local method=ngx.req.get_method()
|
||||||
local ngxmatch=ngx.re.match
|
local ngxmatch=ngx.re.match
|
||||||
|
|
||||||
if whiteip() then
|
if whiteip() then
|
||||||
elseif blockip() then
|
elseif blockip() then
|
||||||
elseif denycc() then
|
elseif denycc() then
|
||||||
|
|
Loading…
Reference in New Issue