Skip to content

Commit

Permalink
增加脱敏规则说明
Browse files Browse the repository at this point in the history
  • Loading branch information
hhyo committed Jun 14, 2018
1 parent dbe12b1 commit 3747f3f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,19 @@ inception无法连接备份库
- 检查DML的表是否存在主键
- 检查语句是否有影响数据
#### 脱敏规则未生效
- 检查脱敏字段是否命中(是否区分大小写)
- 检查脱敏规则的正则表达式是否可以匹配到数据,无法匹配的会返回原结果
- 检查是否关闭了CHECK_QUERY_ON_OFF参数,导致inception无法解析的语句未脱敏直接返回结果
脱敏规则配置参考
| 规则类型 | 规则脱敏所用的正则表达式,表达式必须分组,隐藏的组会使用****代替 | 需要隐藏的组 | 规则描述 |
| --- | --- | --- | --- |
| 手机号 | (.{3})(.*)(.{4}) | 2 | 保留前三后四|
| 证件号码 | (.*)(.{4})$ | 2 | 隐藏后四位|
| 银行卡 | (.*)(.{4})$ | 2 | 隐藏后四位|
| 邮箱 | (.*)@(.*) | 2 | 去除后缀|
#### 查询权限管理
- 查询权限管理的审批流程和SQL上线是隔离的,需要到后台数据管理进行配置
- 审核人看不到待审核工单
Expand All @@ -261,4 +274,4 @@ inception无法连接备份库
检查django-apscheduler相关表是否有创建,可使用`python3 manage.py migrate`创建
## 联系方式
QQ群524233225
QQ群524233225

0 comments on commit 3747f3f

Please sign in to comment.