博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx+lua+redis实现post请求接口之黑名单(一)
阅读量:6592 次
发布时间:2019-06-24

本文共 1735 字,大约阅读时间需要 5 分钟。

一、概述

需求:所有访问/webapi/**的请求必须是POST请求,而且根据请求参数过滤不符合规则的非法请求(黑名单), 这些请求一律不转发到后端服务器(Tomcat)

实现思路:通过在Nginx上进行访问限制,通过Lua来灵活实现业务需求,而Redis用于存储黑名单列表。

二、具体实现

1.lua代码

本例中限制规则包括(post请求,ip地址黑名单,请求参数中imsi,tel值和黑名单)

[root@git-server ~]# cat /usr/local/nginx/conf/lua/ipblacklist.luangx.req.read_body()local redis = require "resty.redis"local red = redis.new()red.connect(red, '127.0.0.1', '6379')local myIP = ngx.req.get_headers()["X-Real-IP"]if myIP == nil then   myIP = ngx.req.get_headers()["x_forwarded_for"]endif myIP == nil then   myIP = ngx.var.remote_addrendif ngx.re.match(ngx.var.uri,"^(/webapi/).*$") then    local method = ngx.var.request_method    if method == 'POST' then        local args = ngx.req.get_post_args()        local hasIP = red:sismember('black.ip',myIP)        local hasIMSI = red:sismember('black.imsi',args.imsi)        local hasTEL = red:sismember('black.tel',args.tel)        if hasIP==1 or hasIMSI==1 or hasTEL==1 then            --ngx.say("This is 'Black List' request")            ngx.exit(ngx.HTTP_FORBIDDEN)          end        else            --ngx.say("This is 'POST' request")            ngx.exit(ngx.HTTP_FORBIDDEN)          end         end

2.nginx.conf

location / {root html;index index.html index.htm;access_by_lua_file /usr/local/nginx/conf/lua/ipblacklist.lua;proxy_pass http://127.0.0.1:8080;client_max_body_size 1m;}

3.添加黑名单规则数据

#redis-cli sadd black.ip '153.34.118.50'#redis-cli sadd black.imsi '460123456789' #redis-cli sadd black.tel '15888888888'

可以通过redis-cli smembers black.imsi 查看列表明细

4.验证结果

[root@git-server ~]# curl -d "imsi=460123456789&tel=15800000000" "http://www.kjios.com/myapi/111"404 Not Found

404 Not Found


nginx

转载于:https://blog.51cto.com/wujianwei/2125305

你可能感兴趣的文章
建立Git版本库管理框架例子
查看>>
nginx防止部分DDOS攻击
查看>>
编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。 但是要保证汉字......
查看>>
number_format() 函数定义和用法
查看>>
Java8中聚合操作collect、reduce方法详解
查看>>
查看记录
查看>>
mybatis报ORA-00911: 无效字符
查看>>
Swift UIView动画animateWithDuration
查看>>
Maven 集成Tomcat插件
查看>>
css中的line-height问题
查看>>
nagios监控配置
查看>>
Hadoop初体验:快速搭建Hadoop伪分布式环境
查看>>
项目进度管理、项目成本管理作业
查看>>
我的友情链接
查看>>
Linux运维学习笔记之二:常用命令1
查看>>
snort安装常见问题及解决方法
查看>>
帧中继(网云)的配置方法
查看>>
在ubuntu系统安装jdk
查看>>
很久没写了
查看>>
我的友情链接
查看>>