Member-only story

Hack The Box — Blue Writeup w/o Metasploit

Rana Khalil
4 min readOct 26, 2019

--

This is the 11th blog out of a series of blogs I will be publishing on retired HTB machines in preparation for the OSCP. The full list of OSCP like machines compiled by TJnull can be found here.

Let’s get started!

Reconnaissance

First thing first, we run a quick initial nmap scan to see which ports are open and which services are running on those ports.

nmap -sC -sV -O -oA initial 10.10.10.40
  • -sC: run default nmap scripts
  • -sV: detect service version
  • -O: detect OS
  • -oA: output all formats and store in file nmap/initial

We get back the following result showing that nine ports are open:

  • Port 139: running Microsoft Windows netbiois-ssn
  • Port 445: running microsoft-ds
  • Ports 135, 49152, 49153, 49154, 49155, 49156 & 49157: running msrpc

Before we start investigating these ports, let’s run more comprehensive nmap scans in the background to make sure we cover all bases.

--

--

No responses yet