当前位置:网站首页>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.
边栏推荐
猜你喜欢

(3) 字符串

PHP8.2 version release administrator and release plan

PHP入门(自学笔记)

ES6数组的扩展方法map、filter、reduce、fill和数组遍历for…in for…of arr.forEach

ES6三点运算符、数组方法、字符串扩展方法

Phpstudy installs Thinkphp6 (problem + solution)
![[sebastian/diff] A historical change extension library for comparing two texts](/img/c7/ea79db7a5003523ece7cf4f39e4987.png)
[sebastian/diff] A historical change extension library for comparing two texts

ES6迭代器解释举例

ES6介绍+定义变量+不同情况下箭头函数的this指向

PHP8.2的版本发布管理员和发布计划
随机推荐
SQL分类、DQL(数据查询语言)、以及相应SQL查询语句演示
IO stream, encoding table, character stream, character buffer stream
uniapp | 官方提供的map组件使用问题
Orasi: 1 vulnhub walkthrough
PHP实现搜索框的自动反查提示
vim编辑模式
线程池(线程池介绍与使用)
The Error in the render: "TypeError: always read the properties of null '0' (reading)" Error solution
17. JS conditional statements and loops, and data type conversion
JS对象, 函数和作用域
Batch replace file fonts, Simplified -> Traditional
Eric靶机渗透测试通关全教程
PHP Foundation March Press Announcement Released
轮播图详解(完整代码在最后)
查询数据库中所有表的索引,并且解析成sql
ES6数组的扩展方法map、filter、reduce、fill和数组遍历for…in for…of arr.forEach
After the mailbox of the Pagoda Post Office is successfully set up, it can be sent but not received.
DVWA drone installation tutorial
Pycharm打包项目为exe文件
多线程(实现多线程、线程同步、生产者消费者)