Glossary/Network Forensics/Network Detection and Response (NDR)

What Is Network Detection and Response (NDR)?

Network detection and response (NDR) is a category of security tooling that uses the network as its sensor: ingesting traffic, modeling normal communication, detecting malicious or anomalous activity, and supporting investigation and response.

Every managed endpoint in the environment is clean. The endpoint agents report no malware, no suspicious processes, nothing to investigate. And yet a device on the network is quietly scanning internal hosts and beaconing to an external address every few minutes. The endpoint tools cannot see it, because the device has no agent: it is an unmanaged IoT camera, or a contractor's laptop, or a printer with a network stack and firmware no one patches. To the agent-based tooling, it does not exist. To anything watching the network itself, it is one of the loudest things on the wire. Catching that device is exactly what network detection and response is for.

Network detection and response (NDR) is a security technology that monitors and analyzes network traffic to detect, investigate, and respond to threats. Instead of relying on software installed on each host, it watches the network as the source of truth, baselining what normal traffic looks like and flagging the behavior that does not fit. It exists because endpoints lie, go dark, or never had an agent in the first place, and the network sees what they cannot hide.

This guide covers what NDR is, how it works, how it compares to EDR, XDR, and IDS/IPS, what it actually detects, why it fills a gap nothing else covers, and how it fits a modern SOC. It is written for blue teamers deciding where network-level detection belongs in their stack.

What is network detection and response?

NDR · the device EDR cannot see
Every managed endpoint is clean. One device has no agent.
Endpoint tools see only the hosts running their agent. The network sees every device that communicates, agent or not.
EDR AGENT
Managed workstation
Agent installed and reporting. Clean.
EDR AGENT
Managed server
Agent installed and reporting. Clean.
NO AGENT
Unmanaged IoT camera
Invisible to endpoint tooling. Scanning internal hosts and beaconing out.
NDR SENSOR · ON THE WIRE
Baselines normal traffic, flags what does not fit
internal scanning beaconing exfiltration
Why it matters To the agent-based tooling the device does not exist. To anything watching the network itself, it is one of the loudest things on the wire.

Network detection and response is a category of security tooling that uses the network as its sensor: it ingests traffic, builds a model of normal communication, detects malicious or anomalous activity, and supports investigation and response. The "response" half is what distinguishes it from older, alert-only network monitoring; it is built not just to notice a threat but to give analysts the context to act on it, and often to trigger or integrate automated response.

The defining idea is visibility from the wire. Every device that communicates, managed or not, leaves a trace on the network, so a tool that watches traffic sees activity regardless of whether an endpoint agent is present, functioning, or compromised. This makes it a core part of network security monitoring and a complement to host-based defenses rather than a replacement for them.

Modern tools lean heavily on behavioral analytics and machine learning rather than signatures alone. Because it is looking for activity that deviates from a learned baseline, it can surface novel attacks and subtle, low-and-slow behavior that signature matching would miss, which is the same strength, and the same false-positive challenge, that anomaly-based detection has always carried.

How NDR works

It turns raw network traffic into detections through a consistent pipeline.

  1. Collect traffic. Sensors ingest network data from taps, SPAN ports, or cloud traffic mirroring, seeing the communication flowing across the environment, north-south (in and out) and east-west (between internal hosts).
  2. Extract and enrich. Rather than store everything, the system typically extracts rich metadata about each connection, who talked to whom, when, how much, over what protocol, with what certificate, and enriches it with context and threat intelligence.
  3. Baseline normal. It builds a model of what normal communication looks like for the environment: which hosts talk to which, expected volumes, typical protocols and destinations.
  4. Detect. It flags deviations and known-bad patterns, using behavioral analytics, machine learning, signatures, and threat-intel matching together, surfacing things like beaconing, internal scanning, or unusual data transfers.
  5. Respond. It gives analysts the connection history and context to investigate quickly, and integrates with other tools to contain a threat, isolating a host, blocking a destination, or feeding a SIEM and response workflow.

A key strength of the metadata approach is that it works even on encrypted traffic. The tool cannot read an encrypted payload, but it can analyze the behavior around it, the timing, volume, destination, and TLS characteristics, and that behavioral signal is often enough to flag malicious activity without ever decrypting anything.

NDR vs. EDR vs. XDR vs. IDS/IPS

NDR is easiest to understand next to the tools it sits beside. They cover different vantage points, and the modern approach uses them together.

EDR (endpoint detection and response) watches endpoints from the inside: processes, files, registry, and local behavior on managed hosts. It has deep host visibility but only on devices where its agent is installed and working.

NDR watches the network: traffic between and beyond hosts. It sees every communicating device, including those no agent covers, but it cannot see what happens inside a host that never crosses the network.

XDR (extended detection and response) is not a peer so much as an integrator: it correlates telemetry across endpoint, network, identity, and cloud into a unified detection and response layer. NDR is frequently one of the feeds into an XDR.

IDS/IPS are the older network-security tools. An IDS detects and alerts on network attacks; an IPS can block them. NDR overlaps with their detection role but goes further: behavioral analytics over signatures, rich investigation context, and built-in response, rather than a stream of standalone alerts.

Tool Vantage point Strength Blind spot
EDR Inside managed endpoints Deep host detail, process-level Devices with no agent
NDR Network traffic Every communicating device, agentless Activity that never hits the network
XDR Across all telemetry Correlated, unified detection Depends on the feeds it integrates
IDS/IPS Network, signature-led Mature, known-threat detection Alert-centric, weaker on novel/behavioral

The takeaway: these are layers, not competitors. EDR gives host depth, NDR gives network breadth, and XDR ties the views together. The combination of endpoint, network, and log telemetry is often called the SOC visibility triad, and NDR is the network leg of it.

What NDR detects

Because it watches behavior across the network, the technology is strong against exactly the activity that has to cross the wire.

  • Lateral movement. An attacker spreading from their initial foothold to other systems generates internal, east-west traffic that host tools see only piecemeal but that the network view sees as a pattern. This is one of its highest-value detections, since lateral movement is hard to spot from any single endpoint.
  • Command and control. Beaconing and other command and control traffic is recurring network communication, and finding its rhythm and anomalies is squarely what NDR is built for.
  • Data exfiltration. Unusual outbound transfers, large volumes to new destinations, or data leaving over odd channels stand out against a traffic baseline.
  • Reconnaissance and scanning. Internal scanning and enumeration are noisy on the network even when they are quiet on the host.
  • Activity from unmanaged and IoT/OT devices. The opener's blind spot: anything without an agent, IoT, OT, BYOD, rogue devices, is visible to NDR purely because it communicates.

A worked example shows the breadth in action. An unmanaged device authenticates to a file server it has never contacted, then to three more in quick succession, a pattern no single host would flag as unusual on its own. The same device opens a recurring outbound connection to a rare external address, and shortly after, a larger-than-usual transfer leaves for that address. Endpoint tooling sees none of it, because the device has no agent. On the network, the three behaviors, internal spread, beaconing, and exfiltration, line up into one obvious intrusion. The detection comes entirely from watching traffic, not hosts.

The connecting thread is that these behaviors are network-native. They cannot be accomplished without generating traffic, which is precisely why a tool watching traffic catches them.

Why NDR matters

NDR earns its place by covering gaps that other tools structurally cannot.

You cannot put an agent on everything. IoT, OT, legacy systems, network appliances, and unmanaged or guest devices often cannot run an endpoint agent, yet they are on the network and increasingly targeted. It is frequently the only tool that can see them at all.

The network is hard to tamper with. An attacker who compromises a host can disable or blind its endpoint agent, but they cannot easily erase the traffic that compromise produced. Network evidence is independent of the host, which makes it resilient ground truth when the endpoint cannot be trusted.

Encrypted traffic still talks. Even as most traffic encrypts, the behavioral metadata, who, when, how much, where, remains visible, so detection continues where payload inspection goes dark.

Breadth catches what depth misses. EDR's deep view of each managed host is invaluable, but it is blind between and beyond hosts. A wide view of all communication catches the cross-host patterns, lateral movement, C2, exfiltration, that no single endpoint reveals.

Together these make NDR less a competitor to endpoint security than its necessary complement: the layer that sees the whole network while EDR sees deeply into the parts of it that have agents.

NDR in the SOC

In practice, it is one instrument in a detection ensemble, and its value grows when its signal is combined with others. It feeds network detections and rich connection context into the SOC's workflow, where they are correlated with endpoint and log telemetry, often in a SIEM or XDR, to turn isolated anomalies into a coherent incident. A beacon flagged on the network becomes far more actionable when tied to the endpoint process that generated it and the user who was logged in. That correlation is also what tames false positives: a network anomaly on its own may be benign, but the same anomaly lined up with a suspicious process and an unusual logon is a high-confidence detection an analyst can act on without hesitation.

NDR is also a powerful enabler of proactive threat hunting. The metadata it retains is a searchable history of network behavior, letting hunters ask questions, which hosts contacted this domain, what talked to that server, where is the low-and-slow beacon, that would otherwise be unanswerable. The same record speeds incident response by giving investigators the network timeline of an intrusion.

Getting started with network detection

If you want to build the skill behind it, learn to read network traffic and recognize malicious behavior in it, because that is what NDR automates.

  1. Learn normal traffic. You cannot spot anomalous communication without a feel for what normal protocols, volumes, and connection patterns look like.
  2. Use open-source network monitoring. Tools like Zeek, an open-source network security monitor, turn traffic into the rich connection logs NDR is built on, and learning Zeek teaches the metadata model directly.
  3. Hunt threats in captured traffic. Practice finding lateral movement, scanning, and C2 in real network data.
  4. Map behavior to technique. Tie what you find to known adversary techniques so an anomaly becomes a named, explainable detection.

The bottom line

NDR is the security layer that treats the network as the source of truth, watching traffic to detect, investigate, and respond to threats that endpoint tools cannot see. Its power comes from breadth and independence: it sees every communicating device, including the unmanaged and IoT systems no agent covers, it keeps working when an attacker blinds a host's endpoint agent, and it still detects through encrypted traffic by reading behavior instead of payload. It is not a replacement for EDR but its complement, the network leg of the visibility triad alongside endpoint and log telemetry, and a frequent feed into XDR. The attacker who hides from the agents still has to cross the wire, and NDR is what watches the wire.

Frequently asked questions

What is NDR (network detection and response)?

<p>NDR is a security technology that monitors and analyzes network traffic to detect, investigate, and respond to threats. Rather than relying on agents installed on each host, it uses the network as its sensor, baselining normal communication and flagging anomalous or malicious behavior using behavioral analytics, machine learning, signatures, and threat intelligence. The "response" element gives analysts investigation context and integrates with tools to contain threats, going beyond the alert-only model of older network monitoring.</p>

What is the difference between NDR and EDR?

<p>EDR (endpoint detection and response) watches endpoints from the inside, processes, files, and behavior, but only on devices where its agent is installed and working. NDR watches network traffic, so it sees every communicating device, including those with no agent, but cannot see host activity that never crosses the network. EDR gives depth on managed hosts; NDR gives breadth across the whole network. They are complementary layers, not substitutes, and most mature SOCs run both.</p>

What is the difference between NDR and XDR?

<p>NDR focuses specifically on network traffic as its detection source. XDR (extended detection and response) is broader: it correlates telemetry across multiple sources, endpoint, network, identity, and cloud, into a single detection and response layer. NDR is often one of the data feeds into an XDR. Put simply, NDR is a specialized network tool, while XDR is an integration layer that may consume NDR's output alongside EDR and other signals.</p>

How is NDR different from IDS/IPS?

<p>An IDS detects and alerts on network attacks, and an IPS can block them, both traditionally signature-led and alert-centric. NDR covers the same network vantage point but goes further: it emphasizes behavioral analytics and machine learning over signatures, retains rich connection metadata for investigation and hunting, and builds in response and integration. NDR can be seen as the evolution of network detection from standalone alerts toward investigation and response.</p>

Can NDR detect threats in encrypted traffic?

<p>Yes, behaviorally. NDR cannot read the contents of encrypted traffic without decryption, but it analyzes the metadata and behavior around it, the timing, volume, destination, frequency, and TLS characteristics of connections. That behavioral signal is often enough to flag beaconing, exfiltration, or anomalous communication without decrypting anything, which is increasingly important now that most network traffic is encrypted.</p>

Why do organizations need NDR if they already have EDR?

<p>Because EDR is blind where there is no agent and where activity never touches a host. Unmanaged, IoT, OT, and legacy devices often cannot run an agent yet are on the network and targeted; a compromised host can disable its own EDR agent; and cross-host patterns like lateral movement and C2 are hard to see from any single endpoint. NDR covers these gaps by watching the network itself, which is why it complements rather than duplicates EDR.</p>

Practice track
Network Forensics
Investigate security incidents by analyzing packet captures, identifying malicious traffic patterns, and reconstructing cyber attacks from network communications.
Browse Network Forensics Labs โ†’
Practice track
Threat Hunting
Develop proactive detection skills by analyzing security logs, identifying advanced attack patterns, and uncovering hidden threats across enterprise environments.
Browse Threat Hunting Labs โ†’