TryHackMe: Nmap Walkthrough

Nmap is short for Network Mapper. It is an open-source Linux command-line tool that is used to scan IP addresses and ports in a network and to detect installed applications . Nmap allows network admins to find which devices are running on their network, discover open ports and services, and detect vulnerabilities Task 1 - Deploy No answer needed. Task 2 - Introduction What networking constructs are used to direct traffic to the right application on a server? Answer: ports How many of these are available on any network-enabled computer? Answer: 65535 [Research] How many of these are considered “well-known”? (These are the “standard” numbers mentioned in the task) Answer: 1024 Task 3 - Nmap Switches What is the first switch listed in the help menu for a ‘Syn Scan’ (more on this later!)? Answer: -sS Which switch would you use for a “UDP scan”? Answer: -sU If you wanted to detect which operating system the target is running on, which switch would y...