Home Forgot
Post
Cancel

Forgot

Nmap Scans

We star off like usual by adding the forgot.htb to our /etc/hosts and with an nmap scan

1
sudo nano /etc/hosts
1
sudo nmap -p- -T4 forgot.htb -vvvv

I also like to open up cherrytree here and create a map with information that I gather through the enumeration process. Then we can keep the tree flowing. I find it makes it easiar to keep track of discoveries this way. For this machine there are only 2 open ports but for other machines we come accross there can be many, many services to enumerate.

For example we have two ports discovered through nmap and using another nmap scan to find the services we can add that information to the tree.

1
sudo nmap -sC -sV -O -p22,80 forgot.htb

example of cherrytree

Werkzeug

Werkzeug is a Web Server Gateway Inteface (WSGI) that describes how a web server communicates with web applications, and how web applications can be chained together to process one request.

This post is licensed under CC BY 4.0 by the author.