TryHackMe SimpleCTF walkthrough for beginners !!

This CTF involved CVE system or known as common vulnerabilities and exposures. CVE system provides a reference-method for publicly known information-security vulnerabilities and exposures. This made the challenge a little bit realistic. 

Youtube Walkthrough:-



Task 1: Capture the flag

You have only one task for this challenge, capture the flags.

Task 1-1: How many open port?

This task required the user to find out the number of the open port under port number 1000. For this task, I am going to use nmap to find out the open ports.

$ nmap -p-1000 -A -v <Machine IP>

In case you need an explanation on the flag:

  • -p-1000: Scan for first 1000 ports
  • -A: OS detection, version detection and script scanning
  • -v: Verbose mode

2 open ports are scanned which are port 21 (FTP) and 80 (HTTP).

Answer: 2

Task 1-2: What is in the higher port?

This is not the end for the nmap! Let’s scan something beyond port 1000 using the following command.

$ nmap -p- -v <MACHINE IP>

We have something on port 2222. After searching on the Internet, EthernetIP-1 service exploitation doesn’t sound a lot to me. To double confirm it, I made another scan just for port 2222.

$ nmap -p 2222 -A -v <MACHINE IP>

Bingo! port 2222 actually used for SSH service instead of port 22. Moral of the story, assign a famous port such as ssh to another port number. (Those noobs will never find it out!)

Answer: ssh

Task 1-3: What CVE can be used to against the machine?

So far we know port 21 (FTP), port 80 (HTTP) and port 2222 (SSH) is the opened port. Let’s investigate it one by one.

FTP (Port 21)

Well, the FTP server looks empty. I guess we have to look on to another port.

HTTP (Port 80)

Port 80 shows the Apache default page. Nothing out of ordinary.

SSH (Port 2222)

What are the username and password for the SSH server? Guess we have to come back for this later on. Alright, We need more information to get down to the rabbit-hole!!!!!!

HTTP (Port 80) – revisit

I try to make another deep scan on port 80 using the following command.

$ nmap -p 80 -A -v <MACHINE IP>

We get robot.txt from the scan. Let’s find it out.

Still, the robot.txt doesn’t give any useful information. It just tells the search engine not to index the CUPS server (print server). Since port 139 and 145 are not open, we can forget the SMB exploitation. What else we can do? Directory attack.

Next, fire up the gobuster with the following command.

$ gobuster dir -u 10.10.199.126 -w /usr/share/dirb/wordlists/common.txt

The “/simple” directory look interesting. Let’s find out.

We get a webpage called “CMS made simple”. After googling it, this is what I get.

Yes, it is one of the latest CVE numbers which is CVE-2019-9053 and there is a python script inside the page.

Answer: CVE-2019-9053

Task 1-4: What kind of vulnerability?

Judging from the page, it is a kind of SQLi or SQL injection vulnerable.

Answer: sqli

Task 1-5: The script

Since the script is the only hint to complete the challenge. Copy, save and launch the script with the following command

$ python CVE-2019-9053.py -u http://<MACHINE IP>/simple/ --crack -w /usr/share/dirb/wordlists/others/best110.txt 

I am able to obtain a username and password called `mitch` and `secret`. How am I going to use this credential?

Answer: secret

Task 1-6: The credential

Still, remember the SSH (Port 2222)? Let’s give it a try.

$ ssh -p 2222 mitch@<MACHINE IP>

Voila, breach in success!

Answer: ssh

Task 1-7: Find mitch’s flag

This task is easy, redirect to mitch’s folder and capture the flag.

Answer: G00d j0b, keep up!

Task 1-8: Find another user

Well, the answer is on the previous task.

Answer: sunbath

Task 1-9: Mitch’s privilege

It is time to escalate our privilege to root and how are we gonna do that? Let see what Mitch can do with Sudo

$ sudo -l

Ah-ha! VIM is the bridge to reach the root. Time to fire up the vim, with sudo. After that, type ‘:!bash’ (without the quote) and enter!

Congratulation, you are now rooted in the machine.

Answer: vim

Task 1-10: Capture the flag

Like the title said, capture the flag and complete the task.

Answer: W3ll d0n3. You made it!

Conclusion

That’s it, you just finished the CTF challenge. Hope you enjoy my write-up, have a nice day

Comments