redis漏洞修復的方法:1.修改 redis.conf 文件,禁用遠程修改DB文件地址。2.修改 redis.conf 文件,添加requirepass mypassword。 3.禁止外網訪問Redis。
redis漏洞修復的方法:
1.修改 redis.conf 文件,禁用遠程修改DB文件地址,例如:
rename-command FLUSHALL ""
rename-command CONFIG ""
rename-command EVAL ""
2.修改 redis.conf 文件,添加:
requirepass mypassword
3.禁止外網訪問Redis。例如修改redis.conf 文件中”bind 127.0.0.1“,使得Redis服務僅當前主機可用。