init.lua
8.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
--WAF Action
require 'config'
require 'lib'
--args
local rulematch = ngx.re.find
local unescape = ngx.unescape_uri
--Get whiteIP by iputils
function white_ip_check()
if config_white_ip_check == "on" then
local iputils = require("iputils")
-- iputils.enable_lrucache()
local IP_WHITE_RULE = get_rule('whiteip.rule')
local CLIENT_IP = get_client_ip()
whitelist = iputils.parse_cidrs(IP_WHITE_RULE)
if whitelist ~= nil then
if iputils.ip_in_cidrs(CLIENT_IP, whitelist) then
-- log_record('White_IP',ngx.var.request_uri,CLIENT_IP,"_")
return true
end
end
end
end
--allow white ip
function white_ip_check_old()
if config_white_ip_check == "on" then
local IP_WHITE_RULE = get_rule('whiteip.rule')
local WHITE_IP = get_client_ip()
if IP_WHITE_RULE ~= nil then
for _,rule in pairs(IP_WHITE_RULE) do
if rule ~= "" and rulematch(WHITE_IP,rule,"jo") then
log_record('White_IP',ngx.var.request_uri,"_","_")
return true
end
end
end
end
end
--deny black ip
function black_ip_check()
if config_black_ip_check == "on" then
local IP_BLACK_RULE = get_rule('blackip.rule')
local BLACK_IP = get_client_ip()
local blackip = ngx.shared.blackip
local req,_ = blackip:get(BLACK_IP)
if req then
log_record('Blackip_in_cache',ngx.var.request_uri,"_","_")
waf_output() -- ngx.exit(403)
end
if IP_BLACK_RULE ~= nil then
for _,rule in pairs(IP_BLACK_RULE) do
if rule ~= "" and rulematch(BLACK_IP,rule,"jo") then
log_record('BlackList_IP',ngx.var.request_uri,"_","_")
ngx.exit(403)
return true
end
end
end
end
end
--allow white url
function white_url_check()
if config_white_url_check == "on" then
local URL_WHITE_RULES = get_rule('whiteurl.rule')
local REQ_URI = ngx.var.request_uri
if URL_WHITE_RULES ~= nil then
for _,rule in pairs(URL_WHITE_RULES) do
if rule ~= "" and rulematch(REQ_URI,rule,"jo") then
return true
end
end
end
end
end
function get_cc_v(SERVER_NAME)
local CC_RULES = get_rule('cc.rule')
local CCcount = tonumber(string.match(config_cc_rate,'(.*)/'))
local CCseconds = tonumber(string.match(config_cc_rate,'/(.*)'))
if CC_RULES ~= nil then
for _,rule in pairs(CC_RULES) do
server_name, err=string.match(rule,'(.*)|.*')
if server_name ~= nil and rulematch(SERVER_NAME,server_name,"jo") then
CCcount=string.match(rule,'.*|(.*)/')
CCseconds=string.match(rule,'.*|.*/(.*)')
break
end
end
end
return CCcount..'/'..CCseconds
end
--deny slow cc attack
function cc_attack_check()
if config_cc_check == "on" then
local ATTACK_URI=ngx.var.uri
local SERVER_NAME = ngx.var.http_host
local CLIENT_IP = get_client_ip()
if SERVER_NAME == nil then
SERVER_NAME="no_serverName"
end
local CC_TOKEN = CLIENT_IP..SERVER_NAME..ATTACK_URI
local limit = ngx.shared.limit
local blackip = ngx.shared.blackip
local req,_ = limit:get(CC_TOKEN)
CC_V = get_cc_v(SERVER_NAME)
CCcount=tonumber(string.match(CC_V,'(.*)/'))
CCseconds=tonumber(string.match(CC_V,'/(.*)'))
blackip_seconds=tonumber(config_black_ip_cache)
if req then
if req > CCcount then
log_record('CC_Attack',ATTACK_URI,CC_TOKEN,"-")
blackip:add(CLIENT_IP,1,blackip_seconds)
waf_output() -- ngx.exit(403)
else
limit:incr(CC_TOKEN,1)
end
else
limit:set(CC_TOKEN,1,CCseconds)
end
end
return false
end
--deny flood(1 second) cc attack
--deny cookie
function cookie_attack_check()
if config_cookie_check == "on" then
local COOKIE_RULES = get_rule('cookie.rule')
local USER_COOKIE = ngx.var.http_cookie
if USER_COOKIE ~= nil then
for _,rule in pairs(COOKIE_RULES) do
if rule ~="" and rulematch(USER_COOKIE,rule,"jo") then
log_record('Deny_Cookie',ngx.var.request_uri,"-",rule)
waf_output()
return true
end
end
end
end
return false
end
--deny url
function url_attack_check()
if config_url_check == "on" then
local URL_RULES = get_rule('url.rule')
local REQ_URI = ngx.var.request_uri
for _,rule in pairs(URL_RULES) do
if rule ~="" and rulematch(REQ_URI,rule,"jo") then
log_record('Deny_URL',REQ_URI,"-",rule)
waf_output()
return true
end
end
end
return false
end
--deny url args
function url_args_attack_check()
if config_url_args_check == "on" then
local ARGS_RULES = get_rule('args.rule')
for _,rule in pairs(ARGS_RULES) do
local REQ_ARGS = ngx.req.get_uri_args()
for key, val in pairs(REQ_ARGS) do
if type(val) == 'table' then
ARGS_DATA = table.concat(val, " ")
else
ARGS_DATA = val
end
if ARGS_DATA and type(ARGS_DATA) ~= "boolean" and rule ~="" and rulematch(unescape(ARGS_DATA),rule,"joi") then
log_record('Deny_URL_Args',ngx.var.request_uri .. " -> ".. ARGS_DATA,"-",rule)
waf_output()
return true
end
end
end
end
return false
end
--deny user agent
function user_agent_attack_check()
if config_user_agent_check == "on" then
local USER_AGENT_RULES = get_rule('useragent.rule')
local USER_AGENT = ngx.var.http_user_agent
if USER_AGENT ~= nil then
for _,rule in pairs(USER_AGENT_RULES) do
if rule ~="" and rulematch(USER_AGENT,rule,"jo") then
log_record('Deny_USER_AGENT',ngx.var.request_uri,"-",rule)
waf_output()
return true
end
end
end
end
return false
end
--deny post
function post_attack_check()
if config_post_check == "on" and ngx.var.request_method == "POST" then
local POST_RULES = get_rule('post.rule')
ngx.req.read_body()
local POST_ARGS,err = ngx.req.get_post_args()
for _,rule in pairs(POST_RULES) do
if POST_ARGS ~= nil then
for key, val in pairs(POST_ARGS) do
if type(val) == 'table' then
local f_val = {}
for _,item in pairs(val) do
if type(item) ~= "boolean" then
table.insert(f_val,item)
end
end
ARGS_DATA = table.concat(f_val, " ")
else
ARGS_DATA = val
end
if ARGS_DATA and type(ARGS_DATA) ~= "boolean" then
-- filter post args
if rulematch(unescape(ARGS_DATA),rule,"joi") then
log_record('Deny_Post_Args',ngx.var.request_uri .. " -> ".. ARGS_DATA,"POST",rule)
waf_output()
return true
end
-- filter post args key=var like password=123456
KV_ARGS = key.."="..ARGS_DATA
if rulematch(unescape(KV_ARGS),rule,"joi") then
log_record('Deny_Post_KV',ngx.var.request_uri .. " -> ".. KV_ARGS,"POST",rule)
waf_output()
return true
end
end
end
end
end
end
return false
end