一个依赖搞定 Spring Boot 反爬虫,防止接口盗刷!
kk-anti-reptile
是适用于基于spring-boot开发的分布式系统的反爬虫组件系统要求
基于 spring-boot 开发 (spring-boot1.x, spring-boot2.x 均可) 需要使用 redis
工作流程
kk-anti-reptile
使用基于 Servlet 规范的的 Filter 对请求进行过滤,在其内部通过 spring-boot 的扩展点机制,实例化一个 Filter,并注入到 Spring 容器 FilterRegistrationBean
中,通过 Spring 注入到 Servlet 容器中,从而实现对请求的过滤kk-anti-reptile
的过滤 Filter 内部,又通过责任链模式,将各种不同的过滤规则织入,并提供抽象接口,可由调用方进行规则扩展Filter
调用则链进行请求过滤,如过滤不通过,则拦截请求,返回状态码 509,并输出验证码输入页面,输出验证码正确后,调用过滤规则链对规则进行重置ip-rule
ip-rule
通过时间窗口统计当前时间窗口内请求数,小于规定的大请求数则可通过,否则不通过。时间窗口、大请求数、ip 白名单等均可配置ua-rule
ua-rule
通过判断请求携带的 User-Agent
,得到操作系统、设备信息、浏览器信息等,可配置各种维度对请求进行过滤命中规则后
接入使用
kk-anti-reptile
的 maven 依赖,并配置启用 kk-anti-reptile
即可加入 maven 依赖
<dependency>
<groupId>cn.keking.project</groupId>
<artifactId>kk-anti-reptile</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
kk-anti-reptile
anti.reptile.manager.enabled=true
import axios from 'axios';
import {baseUrl} from './config';
axios.interceptors.response.use(
data => {
return data;
},
error => {
if (error.response.status === 509) {
let html = error.response.data;
let verifyWindow = window.open("","_blank","height=400,width=560");
verifyWindow.document.write(html);
verifyWindow.document.getElementById("baseUrl").value = baseUrl;
}
}
);
export default axios;
注意
1.apollo-client 需启用 bootstrap
@ConditionalOnProperty
,要在 application.properties/bootstrap.properties
中加入如下样例配置,(apollo-client
需要 0.10.0 及以上版本)详见 apollo bootstrap 说明https://github.com/apolloconfig/apollo/wiki/
apollo.bootstrap.enabled = true
2.需要有 Redisson 连接
kk-anti-reptile
会自动获取 RedissonClient
实例对象;如果没用到,需要在配置文件加入如下 Redisson 连接相关配置spring.redisson.address=redis://192.168.1.204:6379
spring.redisson.password=xxx
配置一览表
anti.reptile.manager
为前缀,如下为所有配置项及说明来源:https://www.oschina.net/news/112586
相关文章