Facts : Linux Easy - HackTheBox Walkthrough
Machine Link : Facts - HTB Hey there, I hope you are doing Well.... Today, we will Solve HackTheBox Facts Machine. So, Let's Go.... Start with Starting Machine and connecting via OpenVPN. Reconnaissance & Enumeration Let's Start with Reconnaissance and Enumeration. (As every time we do) nmap -sV -O -T4 <Machine_IP> Here we are doing Nmap Scan with following Parameters: -sV : Enable Version Scanning on Services -O : Enable OS Detection -T4 : Speed up Scanning Process Interesting.... We found 2 ports open 22 SSH and HTTP So, lets try accessing HTTP via Browser. As we can see it's redirecting to http://facts.htb/, which means we need to add an entry in /etc/hosts. Using nano /etc/hosts : Nice.... This site looks interesting. Let's Try Sub-directory Enumeration : gobuster dir --url http://facts.htb/ --wordlist=/usr/share/wordlists/dirb/common.txt ...
