The third question in the HTB academy module Linux Fundamentals, in the Filter Content section, "
Use cURL from your Pwnbox (not the target machine) to obtain the source code of “https://www.inlanefreight.com” website and filters all unique paths of that domain. Submit the number of these paths as the answer." I am stuck, I tried filtering out urls from looking at other content in the forum. I am confused what the question means by unique paths. What unique, specific thing am I supposed to look for? Here is the best command that I tried:
curl https://inlanefreight.com > inlanefreight.txt
cat inlanefreight.txt | tr " " "\n" | grep https://www.inlanefreight.com | column -t | wc -l
Thanks in advance!