Redis高危命令禁止或重命名

对于一些 redis 的高危命令,建议做禁用处理。

vim /opt/redis/conf/redis.conf              #通过修改redis配置文件实现

禁止

#rename-command CONFIG ""
rename-command KEYS ""
rename-command FLUSHALL ""
rename-command FLUSHDB ""
rename-command CONFIG ""

重命名

#rename-command CONFIG ""
rename-command KEYS "REDISKEYS"
rename-command FLUSHALL "REDISFLUSHALL"
rename-command FLUSHDB "REDISFLUSHDB"
rename-command CONFIG "REDISCONFIG"

修改完成后重启Redis生效!

 

上一篇:Redis缓存雪崩 缓存穿透 缓存击穿


下一篇:redis记录-待写文章