Member-only story

VulnNet Tryhackme Writeup

Vijay Kumar Gupta
6 min readAug 16, 2024

--

Room link: https://www.tryhackme.com/room/vulnnet1
Note: This room is Free

Enumeration

Before we start enumerating the box, add the following line to your /etc/hosts file.

echo “10.10.236.130 vulnnet.thm” >> /etc/hosts

Enumeration

There are 2 open ports. Port 22 is used for SSH, and port 80 serves a web server. We start by enumerating the web server. Browsing to http://vulnnet.thm/ we find the following page:

Lets inspect the source code of the web apge

we see two strange JavaScript files.

Now we use LinkFinder to find links in JavaScript files. Run the following commands to find the hidden links:

git clone https://github.com/GerbenJavado/LinkFinder.gitpip3 install -r requirements.txt
python3 linkfinder.py -d -i http://vulnnet.thm/ -o cli

--

--

Vijay Kumar Gupta
Vijay Kumar Gupta

Written by Vijay Kumar Gupta

Vijay Gupta is an inspiring public speaker and social entrepreneur who has dedicated his life to bringing about positive change and empowering communities.

No responses yet