Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CnChunfeng
/
ichunt_lua_waf
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d228e7b8
authored
Oct 19, 2020
by
Joneq
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
修改代码
parent
049ee80c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
waf.lua
waf.lua
View file @
d228e7b8
...
...
@@ -90,11 +90,17 @@ if wafcheck.WhiteIp(user_ip) == 'exist' or wafcheck.WhiteUrl(temp_uri) == 'exist
end
ngx
.
say
(
wafcheck
.
BlackIp
(
user_ip
))
ngx
.
exit
(
ngx
.
HTTP_FORBIDDEN
)
ngx
.
say
(
1
)
-- 黑名单存在直接302
if
wafcheck
.
BlackIp
(
user_ip
)
==
'exist'
or
wafcheck
.
BlackUrl
(
temp_uri
)
==
'exist'
or
wafcheck
.
BlackHeader
(
user_ip
)
==
'exist'
then
ngx
.
say
(
wafcheck
.
BlackIp
(
user_ip
))
ngx
.
exit
(
ngx
.
HTTP_FORBIDDEN
)
ngx
.
say
(
1
)
return
end
...
...
@@ -409,9 +415,7 @@ res , err = red:expire(spider_time .. user_ip , spider_key_exit_time)
res
,
err
=
red
:
expire
(
spider_count
..
user_ip
,
spider_key_exit_time
)
local
ok
,
err
=
red
:
close
()
ngx
.
say
(
ok
)
ngx
.
say
(
err
)
ngx
.
exit
(
ngx
.
HTTP_FORBIDDEN
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment