Which Nmap command bypasses an IPS with a 100-packet-per-minute limit?
A security engineer is trying to bypass a network IPS that isolates the source when the scan exceeds 100 packets per minute. The scope of the san is to identify web servers in the 10.0.0.0/16 subnet. Which of the following commands should the engineer use to achieve the objective in the least amount of time?
Community Votes
73% of anonymous learners picked answer B. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The exam is testing whether you know that Nmap's
--max-rateand--min-rateare packets per second, and the common trap is thinking a value of '60' is under 100 packets per minute.
CompTIA PT0-002 scan questions often test Nmap timing templates and rate-limiting options against an IPS packet threshold. The community consensus is that nmap -T0 -p 80 10.0.0.0/16 is correct because --max-rate is measured in packets per second, so the tempting option C actually exceeds 100 packets per minute.
Choosing C (`--max-rate 60`) because 60 looks below 100, but 60 packets per second equals 3,600 packets per minute, which trips the IPS; B (T0 paranoid) is the only option that safely stays below the threshold.
Community Discussion (16 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Option B uses Nmap's T0 paranoid timing template, which sends one probe and then waits 5 minutes (300 seconds) before the next probe. That produces a rate far below the IPS limit of 100 packets per minute, so the scan will not be isolated. Although T0 is extremely slow, it is the only command among the four that actually satisfies the primary requirement of bypassing the IPS.
Why the Other Options Are Wrong
Option C is the most common wrong choice because --max-rate 60 limits Nmap to 60 packets per second, not 60 packets per minute; this equals 3,600 packets per minute and would trigger the IPS. Option D uses --min-rate 80, which forces at least 80 packets per second and is even worse. Option A uses --max-hostgroup 100 to control host grouping but does not limit packet rate, and the T3 timing template can easily exceed 100 packets per minute.
Community Comment Notes
Sebastian20's comment [1] clearly explains that C is wrong because --max-rate is measured per second, giving 3,600 packets per minute. Other commenters [10] repeat that B is the only option that stays below 100 packets per minute. Some commenters [8] argue that C is better because the question says 'least amount of time,' but they miss that C violates the IPS limit; the exam prioritizes the security constraint over raw speed.
Official Reference
Exam Strategy
For any IPS/Nmap rate question, convert Nmap's rate options to packets per minute before comparing to the threshold. Remember that --max-rate and --min-rate are per-second values, while T0 (paranoid) is the built-in slow template designed to evade IDS/IPS.