Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
26 lines
729 B
Markdown
26 lines
729 B
Markdown
# Redis 4.x/5.x 主从复制导致的命令执行
|
||
|
||
Redis是著名的开源Key-Value数据库,其具备在沙箱中执行Lua脚本的能力。
|
||
|
||
Redis未授权访问在4.x/5.0.5以前版本下,我们可以使用master/slave模式加载远程模块,通过动态链接库的方式执行任意命令。
|
||
|
||
参考链接:
|
||
|
||
- <https://2018.zeronights.ru/wp-content/uploads/materials/15-redis-post-exploitation.pdf>
|
||
|
||
## 环境搭建
|
||
|
||
执行如下命令启动redis 4.0.14:
|
||
|
||
```
|
||
docker compose up -d
|
||
```
|
||
|
||
环境启动后,通过`redis-cli -h your-ip`即可进行连接,可见存在未授权访问漏洞。
|
||
|
||
## 漏洞复现
|
||
|
||
使用[这个POC](https://github.com/vulhub/redis-rogue-getshell)即可直接执行命令:
|
||
|
||

|