概要
TryHackMe「Getting Started」のWalkthroughです。
Task1
Q1.What is the name of the hidden admin page?
Hint.Don't forget to include the "/" character in your answer.
nmap
でポートスキャンを実行します。
$ nmap -sC -A -T4 -sV 10.10.88.136
Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-06-07 01:50 EDT
Nmap scan report for 10.10.88.136
Host is up (0.24s latency).
Not shown: 996 closed tcp ports (conn-refused)
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 8.2p1 Ubuntu 4ubuntu0.1 (Ubuntu Linux; protocol 2.0)
| ssh-hostkey:
| 3072 42:6c:06:53:f1:c0:41:8d:50:81:c5:3b:46:1e:c4:22 (RSA)
| 256 87:0b:64:ae:2c:a8:0f:ae:94:c3:0e:a1:8a:a3:1d:14 (ECDSA)
|_ 256 d3:e5:aa:a2:43:90:3d:95:43:24:46:f4:aa:58:33:a1 (ED25519)
80/tcp open http Node.js (Express middleware)
|_http-title: BFFs
3000/tcp open http Node.js (Express middleware)
|_http-title: BFFs
3017/tcp filtered event_listener
Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 48.44 seconds
Webページを開きます。
開発者ツールでソースコードを見るとコメントアウトでパスを発見しました。
<!-- don't forget to remove admin page on /test-admin -->
アクセスするとテスト用の管理者ページが表示されました。
A./test-admin
Task2
Q1.What is the username and password in the form username:password?
Username: admin
,Password: admin
でログインすることができました。
A.admin:admin
Q2.How many user are signed up to the application?
ポータル画面の右側にサインアップしているユーザーが表示されています。
A.3