Use cURL from your Pwnbox (not the target machine) to obtain the source code of the "https://www.inlanefreight.com" website and filter all unique paths of that domain. Submit the number of these paths as the answer

You can use this command to answer the question with what you learned in the module

curl -s https://www.inlanefreight.com | tr " " “\n” | grep -oE ‘https://www.inlanefreight.com/([^#"]+)’ | sort -u | wc -l