TryHackMe -- Net Sec Challenge
目录
TryHackMe – Net Sec Challenge
THM - Net Sec Challenge
What is the highest port number being open less than 10,000?
指定端口范围扫描
|
|
There is an open port outside the common 1000 ports; it is above 10,000. What is it?
全端口扫描
|
|
How many TCP ports are open?
全端口扫描,统计TCP协议的端口,总计6个。
What is the flag hidden in the HTTP server header?
使用nmap脚本http-headers
:
|
|
本质上跟curl的请求差不多。
What is the flag hidden in the SSH server header?
服务识别,或者使用telnet查看返回信息。
|
|
We have an FTP server listening on a nonstandard port. What is the version of the FTP server?
非常规端口,服务识别,10021端口:
|
|
We learned two usernames using social engineering: eddie
and quinn
. What is the flag hidden in one of these two account files and accessible via FTP?
有用户名,需要登陆访问ftp获取文件,所以需要爆破密码。
|
|
登陆然后查看文件,获得flag。
Browsing to http://10.10.208.24:8080
displays a small challenge that will give you a flag once you solve it. What is the flag?
访问:
大意就是使用nmap扫描,但是不要被IDS检查出来。直接用-sN
选项即可。-sN
选项是隐蔽扫描,通过构造特殊标记来绕过一些IDS:
|
|
总结
- 基本原则:减少扫描次数
- 扫描端口范围 -> 针对特定端口扫描 -> 指定特定脚本
- 隐蔽扫描:-sN -sF -sX