kami@kali:~$ journalctl
-
Redeemer writeup
10.129.136.187
Task 1 – Which TCP port is open on the machine?
Scanned the target with “”nmap -A -p- 10.129.136.187””.

A: 6379
Task 2 – Which service is running on the port that is open on the machine?
A: redis
Task 3 – What type of database is Redis? Choose from the following options: (i) In-memory Database, (ii) Traditional Database
Knew this from previous knowledge.
A: In-memory Database
Task 4 – Which command-line utility is used to interact with the Redis server? Enter the program name you would enter into the terminal without any arguments.
Think I learned this from a TryHackMe box in the past.
A: redis-cli
Task 5 – Which flag is used with the Redis command-line utility to specify the hostname?
A: -h
Task 6 – Once connected to a Redis server, which command is used to obtain the information and statistics about the Redis server?

A: INFO
Task 7 – What is the version of the Redis server being used on the target machine?
Besides “”info””, Nmap results also gave us this.
A: 5.0.7
Task 8 – Which command is used to select the desired database in Redis?
A: SELECT
Task 9 – How many keys are present inside the database with index 0?
It skipped a few important parts here but to list databases you’ll need to run “”CONFIG GET databases””. That listed “databases” and “16”. To see what’s inside you can select and run “”KEYS *””. I didn’t find anything in those but the question mentioned index 0 anyways. Selected that, listed keys and we get 4 results.

Task 10 – Which command is used to obtain all the keys in a database?
The questions seem like in a weird order if you had no previous knowledge of interacting with redis but luckily I have.
A: KEYS *
Submit Flag:
To actually read the file, you’ll need to use “”GET””

A: 03e1d2b376c37ab3f5319922053953eb
-
Dancing writeup
10.129.1.12
Task 1 – What does the 3-letter acronym SMB stand for?
Previous knowledge
A: Server Message Block
Task 2 – What port does SMB use to operate at?
A: 445
Task 3 – What is the service name for port 445 that came up in our Nmap scan?
Definitely don’t know this off the top of my head so I’ll scan it.

A: microsoft-ds
Task 4 – What is the ‘flag’ or ‘switch’ that we can use with the smbclient utility to ‘list’ the available shares on Dancing?
Back to some previous knowledge of already using these tools. Just remember though this switch needs to exist before the IP for it to work properly. That took me a bit to realize that I was messing up my commands.

Hitting enter twice I was able to log in anonymously.
A: -L
Task 5 – How many shares are there on Dancing?
A: 4
Task 6 – What is the name of the share we are able to access in the end with a blank password?
A: WorkShares
Task 7 – What is the command we can use within the SMB shell to download the files we find?
A: get
Submit Flag:
Connected anonymously to this share and there are two directories in there.

Enumerated the directories and found a flag.txt and worknotes.txt.

Using “”get”” I downloaded both files on my device and read them.

A: 5f61c10dffbc77a704d76016a22f1664
-
Fawn writeup
Task 1 – What does the 3-letter acronym FTP stand for?
A: File Transfer Protocol
Task 2 – Which port does the FTP service listen on usually?
A: 21
Task 3 – FTP sends data in the clear, without any encryption. What acronym is used for a later protocol designed to provide similar functionality to FTP but securely, as an extension of the SSH protocol?
A: SFTP
Task 4 – What is the command we can use to send an ICMP echo request to test our connection to the target?
A: ping
Task 5 – From your scans, what version is FTP running on the target?
Started up our machine got IP 10.129.1.14 and ran nmap

A: vsftpd 3.0.3
Task 6 – From your scans, what OS type is running on the target?
Since I ran -A in the previous command I also got that output

A: Unix
Task 7 – What is the command we need to run in order to display the ‘ftp’ client help menu?
A: ftp -?
Task 8 – What is username that is used over FTP when you want to log in without having an account?
A: anonymous
Task 9 – What is the response code we get for the FTP message ‘Login successful’?
Didn’t recall this from memory so I ftp’d to the machine and logged in with anonymous:anonymous

A: 230
Task 10 – There are a couple of commands we can use to list the files and directories available on the FTP server. One is dir. What is the other that is a common way to list files on a Linux system.
Ran this in last screenshot just out of habit when connecting to ftp
A: ls
Task 11 – What is the command used to download the file we found on the FTP server?
A: get
Submit Flag:

Pulled the file to my machine and read it
A: 035db21c881520061c53e0536e44f815
-
Meow write up
https://app.hackthebox.com/machines/Meow
10.129.1.17
Task 1 – What does the acronym VM stand for?
A: 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.
A: terminal
Task 3 – What service do we use to form our VPN connection into HTB labs?
I just know this from clicking around in HackTheBox
A: openvpn
Task 4 – What tool do we use to test our connection to the target with an ICMP echo request?
I use this everyday
A: ping
Task 6 – What is the name of the most common tool for finding open ports on a target?
A: nmap
Task 7 – What service do we identify on port 23/tcp during our scans?
A: telnet
I knew all the previous questions from past experience.
Submit Flag
Started up the machine. Following the questions I nmap scanned it anyway and only receive port 23 open

Attempted to connect to that port to see if it had anything interesting and received a log in.

I attempted admin:admin, meow:meow, cat:cat and other iterations of that which did not work. I was confused for a second, but after looking through the questions I ended up using root and it got me in.

A: b40abdfe23665f766f9c61ecba8a4c19
-
Hello World!
Welcome to my website! This is my very first post, and I’m excited to start sharing ideas, projects, and updates here. Stay tuned for more content coming soon!
Categories
- Active Directory (1)
- active-directory (1)
- ai (31)
- artificial-intelligence (15)
- blog (1)
- cloud (8)
- cyber-security (14)
- cybersecurity (42)
- devops (4)
- docker (1)
- education (4)
- freebsd (1)
- hacking (1)
- health (1)
- HTB Labs (3)
- labs (2)
- life (1)
- linux (35)
- llm (2)
- mcp (1)
- microsoft (2)
- programming (1)
- science (3)
- security (43)
- software (1)
- ssh (1)
- technology (77)
- threat-intelligence (1)
- ubuntu (4)
- vulnerability (1)
- wifi (1)
- windows (10)
- wordpress (1)
- writing (8)