exam questions

Exam 200-201 All Questions

View all questions & answers for the 200-201 exam

Exam 200-201 topic 1 question 78 discussion

Actual exam question from Cisco's 200-201
Question #: 78
Topic #: 1
[All 200-201 Questions]

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?

  • A. nmap --top-ports 192.168.1.0/24
  • B. nmap ג€"sP 192.168.1.0/24
  • C. nmap -sL 192.168.1.0/24
  • D. nmap -sV 192.168.1.0/24
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
JohnBB
Highly Voted 2 years, 10 months ago
Correct answer is C. nmap -sL 192.168.1.0/24 https://nmap.org/book/host-discovery-controls.html https://nmap.org/book/man-briefoptions.html -sL: List Scan - simply list targets to sca
upvoted 14 times
Entivo
1 year, 8 months ago
With respect you are wrong. The -sL switch simply lists which hosts to perform a port scan against, which will trigger your IDS/IPS. You need the -sP switch to skip port scanning and check for live hosts.
upvoted 6 times
...
...
AhmedAbdalla
Most Recent 6 months, 2 weeks ago
Nmap -sP 192.168.1.0/24 This command will perform a simple ping scan to identify hosts that are alive in the specified IP range without performing a detailed port scan, which is less likely to trigger intrusive alerts on IDS devices.
upvoted 1 times
...
alhamry
11 months, 4 weeks ago
The best answer is B. The 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. The --sP option in Nmap sends an ICMP echo request, TCP SYN to port 443, TCP ACK to port 80, and ICMP timestamp request probes to determine if a host is up. This is a non-intrusive method of host discovery and does not send any probes to specific ports that could trigger alerts on an IDS device. Option A (--top-ports) is used to scan the top N most frequently used ports on a host, and is not used for host discovery. Option C (-sL) sends a list scan and does not send any probes to determine if a host is up. This option simply lists the targets that would be scanned by Nmap. Option D (-sV) is used for version detection and does not send any probes to determine if a host is up.
upvoted 1 times
...
drdecker100
1 year, 2 months ago
Selected Answer: B
The "-sP" option instructs Nmap to perform a simple ping scan to determine which hosts are alive on the network. This type of scan does not send any packets to the target hosts' ports, so it should not trigger any intrusive portscan alerts on the IDS device. The output of this command will list the IP addresses of the live hosts found on the network.
upvoted 2 times
...
cy_analyst
1 year, 6 months ago
Selected Answer: B
-sn (No port scan) This option tells Nmap not to do a port scan after host discovery, and only print out the available hosts that responded to the host discovery probes. In previous releases of Nmap, -sn was known as -sP.
upvoted 4 times
...
weganos
1 year, 7 months ago
Selected Answer: B
I think the answer is B from what I read in all the links below.
upvoted 1 times
...
Entivo
1 year, 8 months ago
Selected Answer: B
The answer is B. The -sP option skips port scanning and checks for live hosts in the network. See this link https://www.golinuxcloud.com/nmap-command-in-linux/#:~:text=nmap%20command%20allows%20you%20to%20scan%20a%20system,by%20using%20an%20IP%20address%20with%20nmap%20command.
upvoted 1 times
...
momoamek
1 year, 8 months ago
B is correct -sP allows light reconnaissance of a target network without attracting much attention. Knowing how many hosts are up is more valuable to attackers than the list provided by list scan of every single IP and host name.
upvoted 1 times
...
BigSwinger44
2 years ago
B is correct. Supported here. https://linuxhint.com/nmap_ping_sweep/
upvoted 1 times
...
J8Ryan
2 years, 2 months ago
Selected Answer: B
-sP solo realizar ping (igual que con –PP –PM –PS443 –PA80), descubriendo así los host vivos de la red sin escaneo de puertos, tal y como dice la pregunta.
upvoted 1 times
...
mariodesa
2 years, 3 months ago
Selected Answer: B
-sL (List Scan) The list scan is a degenerate form of host discovery that simply lists each host of the network(s) specified, without sending any packets to the target hosts. By default, Nmap still does reverse-DNS resolution on the hosts to learn their names. It is often surprising how much useful information simple hostnames give out. -sn (No port scan) This option tells Nmap not to do a port scan after host discovery, and only print out the available hosts that responded to the host discovery probes. This is often known as a “ping scan”, but you can also request that traceroute and NSE host scripts be run. This is by default one step more intrusive than the list scan, and can often be used for the same purposes. It allows light reconnaissance of a target network WITHOUT ATTRACTING MUCH ATTENTION. Knowing how many hosts are up is more valuable to attackers than the list provided by list scan of every single IP and host name. IN PREVIOUS RELEASES OF NMAP, -sn WAS KNOWN AS -sP. Correct answer is B Source: https://nmap.org/book/man-host-discovery.html
upvoted 2 times
...
DubDubDub
2 years, 3 months ago
B is correct: https://explainshell.com/explain?cmd=nmap+-sP
upvoted 2 times
...
tor_bap
2 years, 3 months ago
Selected Answer: C
ans should be C
upvoted 1 times
...
alocin
2 years, 6 months ago
from NMAP Cheat Sheet -sn: Probe only (host discovery, not port scan) -sS: SYN Scan -sT: TCP Connect Scan -sU: UDP Scan -sV: Version Scan -O: Used for OS Detection/fingerprinting --scanflags: Sets custom list of TCP using URG ACK PSH RST SYN FIN in any order
upvoted 1 times
...
Alannn
2 years, 7 months ago
nmap 192.168.1.1-3 -sL No Scan. List targets only nmap 192.168.1.1/24 -sn Disable port scanning. Host discovery only. So -Sn is the correct answer seeing the question is asking about alive hosts.
upvoted 1 times
Alannn
2 years, 7 months ago
But seeing this is not an option the next best thing is -sL
upvoted 2 times
...
...
fejec
2 years, 7 months ago
The -sP is the ping sweep, this parameter don't make a port scanning. Try by your self on your network.
upvoted 1 times
...
qz999
2 years, 8 months ago
The -sL list scan still scans the listed targets. Though not given an an answer choice, the -sn options causes nmap to ping sweep only without any port scanning.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago