200-201 · Question #444
An engineer needs to discover alive hosts within the 192.168.1.0/24 range without triggering intrusive portscan alerts on the IDS device using Nmap. Which command will accomplish this goal?
The correct answer is B. nmap -sP 192.168.1.0/24. -sP (or --ping-sweep) is used for host discovery. It sends ICMP echo requests to the specified IP range to determine which hosts are up and available without performing a full port scan. This method is non-intrusive and typically doesn't trigger port scan alerts on IDS devices.
Question
An engineer needs to discover alive hosts within the 192.168.1.0/24 range without triggering intrusive portscan alerts on the IDS device using Nmap. Which command will accomplish this goal?
Options
- Anmap --top-ports 192.168.1.0/24
- Bnmap -sP 192.168.1.0/24
- Cnmap -sL 192.168.1.0/24
- Dnmap -sV 192.168.1.0/24
How the community answered
(41 responses)- A2% (1)
- B80% (33)
- C5% (2)
- D12% (5)
Explanation
-sP (or --ping-sweep) is used for host discovery. It sends ICMP echo requests to the specified IP range to determine which hosts are up and available without performing a full port scan. This method is non-intrusive and typically doesn't trigger port scan alerts on IDS devices.
Topics
Community Discussion
No community discussion yet for this question.