forked from Medicean/VulApps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md
58 lines (36 loc) · 1.17 KB
/
README.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Zabbix v2.2.x, 3.0.0-3.0.3 jsrpc 参数 profileIdx2 SQL 注入漏洞
---
### 漏洞信息
zabbix 的 `jsrpc` 的 `profileIdx2` 参数存在 insert 方式的 SQL 注入漏洞,
zabbix 默认开启 `Guest` 用户登录,远程攻击者无需登录可直接执行 SQL 语句。
### 镜像信息
类型 | 用户名 | 密码
:-:|:-:|:-:
Mysql | root | zabbix
/ | admin | zabbix
### 获取环境:
1. 拉取镜像到本地
```
$ docker pull medicean/vulapps:z_zabbix_1
```
2. 启动环境
```
$ docker run -d -p 8000:80 medicean/vulapps:z_zabbix_1
```
> `-p 8000:80` 前面的 8000 代表物理机的端口,可随意指定。
### 使用与利用
访问 `http://你的 IP 地址:端口号/`
### PoC 使用
> 本例中使用 [zabbix 2.2.x / 3.0.x jsrpc.php SQL 注入检测 PoC](http://www.bugscan.net/source/plugin/4591/template/)
1. 下载并安装 `BugScan SDK`
详见 [BugScan 插件开发文档 - 环境配置](http://doc.bugscan.net/chapter1/1-1.html)
2. 修改 `poc.py` 中地址为容器地址
```
if __name__ == '__main__':
from dummy import *
audit(assign(fingerprint.wordpress, "http://localhost:8000")[1])
```
3. 运行 `poc.py`
```
$ python poc.py
```