Posts

Image
Matrix 1 (Vulnhub) | Walkthrough by ROTP We're going to start scanning our network to see what ip address has our target. After get the target's IP address (in this case 192.168.1.13) we're going to use nmap to scan all tcp ports and services of our target. -sC : is to test every service with the script by default that has nmap. -sV : is to enumerate services' versions. -p- : is to indicate nmap to scan all tcp ports. Note : as you can see we use the target's IP as the last argument. We had this as result, only 3 open ports and 2 services, let's enumerate the port 80 (if I see an SSH server running I usually scan it at the end). This is the page we have as result, (I think is a cool page). The first I think when I have a webpage is to look for the it source code. The first thing I saw was a PNG file, and as you can see the filename is p0rt_31337.png , this can be a little hint. This is the image, if we want we can ...