Commit 76232326 by Joneq

增加对script的验证

parent 0872cc57
Showing with 0 additions and 3 deletions
......@@ -68,13 +68,10 @@ end
---如果参数中有<script>...</script>怎跳转google验证
if args ~= nil then
for k, v in pairs(args) do
ngx.say(v, err)
ngx.say(string.find (v, '<script>', 1), err)
if string.find (v, '<script>', 1) ~= nil then
redirect.checkgoogle(red)
end
end
ngx.exit(200)
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment