当前位置:网站首页>Alfa: 1 vulnhub walkthrough
Alfa: 1 vulnhub walkthrough
2022-08-02 03:59:00 【xdeclearn】
Information Page: http://www.vulnhub.com/entry/alfa-1,655/
Keywords: Enumeration | Web Application | Brute Force |Privilege Escalation
0x01 port scan
PORT STATE SERVICE21/tcp open ftp80/tcp open http139/tcp open netbios-ssn445/tcp open microsoft-ds65111/tcp open unknown0x02 get the first flag
Use anonymous to access ftp and get a picture named milo.jpg.
Access port 80, traverse through the directory, on the page http://192.168.56.157/alfa-support/ get the prompt information:
So use the previous picture name to build a password dictionary through crunch, and hydra blasts to get the password milo666.
[email protected]:~$ crunch 7 7 -t milo%%% > 1.txtCrunch will now generate the following number of lines: [email protected]:~$ hydra -l thomas -P 1.txt ssh://192.168.56.157:65111[65111][ssh] host: 192.168.56.157 login: thomas password: milo666Use ssh to log in and get the first flag.
0x03 get the second flag
After obtaining the shell, a routine operation, such as suid, sudo, crontab, backup password file, etc., all ended in failure, and in turn returned to the beginning, there is a sensitive file in the user directory .remote_secret.
At the same time, vncserver exists in the process.
It is estimated that the above password file is used to log in to vnc, but since vncserver is limited to local login, so here we use ssh as a socks5 proxy, and use vncview to load the password file under kali to achieve root access, and get the second flag.
边栏推荐
- (7) 浅学 “爬虫” 过程 (概念+练习)
- Query the indexes of all tables in the database and parse them into sql
- VIKINGS: 1 vulnhub walkthrough
- IP access control: teach you how to implement an IP firewall with PHP
- PHP8.2 version release administrator and release plan
- Solve the problem of Zlibrary stuck/can't find the domain name/reached the limit, the latest address of Zlibrary
- 12.什么是JS
- SQL: DDL, DML, DQL, DCL corresponding introduction and demonstration
- What are the PHP framework?
- hackmyvm-bunny walkthrough
猜你喜欢
随机推荐
(3) 字符串
Various ways of AES encryption
Thread Pool (Introduction and Use of Thread Pool)
12. What is JS
About the apache .htaccess file of tp
多线程(实现多线程、线程同步、生产者消费者)
PHP图片压缩到指定的大小
解决uni-app 打包H5网站 下载图片问题
如何计算地球上两点的距离(附公式推导)
(2) 顺序结构、对象的布尔值、选择结构、循环结构、列表、字典、元组、集合
[phpunit/php-timer] A timer for code execution time
17.JS条件语句和循环,以及数据类型转换
TCP communications program
Using PHPMailer send mail
[symfony/finder] The best file manipulation library
js 中this指向
v-on基本使用、参数传递、修饰词
查询数据库中所有表的索引,并且解析成sql
IO stream, encoding table, character stream, character buffer stream
解决 Zlibrary 卡死/找不到域名/达到限额问题,Zlibrary最新地址









