312-50V11 · Question #67
Bob finished a C programming course and created a small C application to monitor the network traffic and produce alerts when any origin sends "many" IP packets, based on the average number of…
The correct answer is A. Just a network monitoring tool. Bob's application qualifies only as a basic network monitoring tool because it solely measures packet rates against a threshold, which lacks the intrusion-specific detection logic required to be classified as an IDS.
Question
Bob finished a C programming course and created a small C application to monitor the network traffic and produce alerts when any origin sends "many" IP packets, based on the average number of packets sent by all origins and using some thresholds. In concept, the solution developed by Bob is actually:
Options
- AJust a network monitoring tool
- BA signature-based IDS
- CA hybrid IDS
- DA behavior-based IDS
How the community answered
(41 responses)- A76% (31)
- B2% (1)
- C15% (6)
- D7% (3)
Why each option
Bob's application qualifies only as a basic network monitoring tool because it solely measures packet rates against a threshold, which lacks the intrusion-specific detection logic required to be classified as an IDS.
A true IDS - whether signature-based or behavior-based - must detect indicators of intrusion, not simply flag high-volume traffic from a source. Bob's tool measures raw packet counts relative to an average and fires alerts on threshold breaches, which is the core function of packet-rate network monitoring tools, not intrusion detection. Legitimate high-traffic sources such as backup servers or streaming clients would trigger the same alerts, demonstrating the tool lacks the intrusion-specific correlation needed to be an IDS.
A signature-based IDS detects threats by matching traffic against a database of known attack patterns or signatures, a capability Bob's tool entirely lacks.
A hybrid IDS combines both signature-based and anomaly-based detection engines, which is far beyond the single-metric threshold alerting Bob implemented.
A behavior-based IDS builds a multi-dimensional statistical baseline of normal system and network behavior and correlates deviations specifically tied to intrusion indicators, whereas Bob's tool only tracks a single metric - packet count per source.
Concept tested: IDS classification - behavior-based vs. network monitoring
Source: https://csrc.nist.gov/publications/detail/sp/800-94/final
Topics
Community Discussion
No community discussion yet for this question.