Glossary/Detection Engineering/Endpoints

What Is an Endpoint? Definition and Security

An endpoint is any device that connects to a network and serves as a point where data enters or leaves it, such as a laptop, server, phone, virtual machine, or internet-connected device.

Pull up the asset inventory for any organization and count the laptops, then the servers, then the phones, then the things nobody remembered: the conference-room camera, the badge printer, the warehouse scanner, the VP's smartwatch on the corporate Wi-Fi. Each one is an endpoint. Each one runs code, holds a credential, or talks to something that does. And each one is a place an attacker can land.

That is the whole reason endpoints matter to a defender. An attacker does not break into "the network" in the abstract. They break into a machine: a workstation that opened the wrong attachment, a server with an unpatched service, a phone that installed a malicious profile. The endpoint is where the intrusion becomes real, where the malicious process actually runs, and where the evidence of it lives.

This guide covers what an endpoint is, what counts as one (and what does not), why endpoints are the most attacked surface in most breaches, and how endpoint security works on the blue team side. It is written for SOC analysts, incident responders, and threat hunters who spend their day reading what endpoints record.

What is an endpoint?

An endpoint is any device that connects to a network and serves as a point where data enters or leaves it. In practice that means any machine running code at the edge of the network: laptops, desktops, servers, phones, tablets, virtual machines, and the growing pile of internet-connected hardware that is not obviously a "computer" at all.

The word is a network-topology term turned security term. On a network diagram, an endpoint is a node at the end of a connection: not the switch or router in the middle that moves traffic, but the device that originates or consumes it. To a defender, that distinction is the whole point. Infrastructure in the middle forwards packets. Endpoints run software, store data, and execute the code an attacker wants to run. The endpoint is where a payload detonates and where a process tree starts.

That is why endpoint is the unit of detection and response. When an alert fires, it fires about a process on a host. When you investigate, you pull the timeline from a host. When you contain, you isolate a host. The network tells you something moved between machines; the endpoint tells you what actually happened on one.

What counts as an endpoint

The category is wider than "computers," and it keeps growing as more hardware ships with a network stack. A working definition: if it has its own network connection and runs its own code, it is an endpoint you have to account for.

  • Traditional compute. Desktops, laptops, and servers. The servers matter most per device: a domain controller or database server is a small number of endpoints holding a large share of the risk.
  • Mobile. Phones and tablets, corporate-managed or BYOD. They carry credentials and mail and often sit outside the office network entirely.
  • Virtual and cloud. Virtual machines, cloud instances, and containers. A cloud workload is an endpoint even though no one ever touches it physically, and it can appear and vanish in minutes.
  • Point of sale and operational. POS terminals, ATMs, kiosks, and industrial controllers. These were the entry point in some of the largest retail breaches on record.
  • IoT and the long tail. Printers, IP cameras, smart TVs, badge readers, building sensors, smartwatches, and health trackers. Many run old firmware, ship with default credentials, and cannot host a security agent at all.

What is not an endpoint: the network gear in the middle. Switches, routers, and most firewalls move traffic between endpoints rather than originating it, so they are network infrastructure, not endpoints, even though they are very much assets you defend. The line is not about importance. It is about role: an endpoint is a destination on the network, not a relay.

The long tail is where endpoint security gets hard. A laptop can run an agent and report telemetry. A ten-year-old IP camera cannot, but it still has an IP address, an open port, and firmware full of known vulnerabilities. Those devices expand the attack surface without expanding your visibility, which is exactly the combination an attacker looks for.

Why endpoints are the front door

The endpoint as the front door
The first machine is the door, not the prize.
One compromised endpoint becomes the foothold for everything that follows.
INITIAL ACCESS
One endpoint
A phished laptop or an unpatched server accepts untrusted input.
FOOTHOLD
Credential theft
The attacker harvests credentials from the first machine.
LATERAL MOVEMENT
Host to host
They move to other hosts and escalate toward a domain controller.
OBJECTIVE
High-value target
Data theft or a domain-wide ransomware event.
The defender's edge The same endpoint that gets compromised is the one that recorded it. Its process tree, file changes, and connections are the richest evidence of what the attacker did.

Endpoints are the most common entry point into an organization because they are where people and untrusted input meet. A user opens an email, clicks a link, plugs in a USB drive, or installs an app. A server exposes a service to the internet. Every one of those is an endpoint accepting input from somewhere it does not fully control, and that is the opening.

Once one endpoint is compromised, it becomes a foothold. From a single workstation an attacker can harvest credentials, move laterally to other hosts, escalate toward a domain controller, and reach the high-value data or systems that were the actual target. The first machine is rarely the prize. It is the beachhead. This is why a single phished laptop can end in a domain-wide ransomware event: the endpoint was the door, not the destination.

The numbers say the door is wide. Verizon's 2026 Data Breach Investigations Report found that 31% of breaches now start with vulnerability exploitation, the first time in 19 years that exploiting a flaw on an exposed system has surpassed stolen credentials as the top entry point. Both routes land on an endpoint: a server with an unpatched service, or a workstation where a stolen credential is used. Mandiant's M-Trends 2026 puts the global median dwell time, the gap between intrusion and detection, at 14 days. That is two weeks an attacker can spend operating from a compromised endpoint before anyone notices, which is exactly the window endpoint detection is built to close.

How endpoint security works

Endpoint security is the practice of protecting those devices and, just as importantly, recording what they do so an analyst can investigate when prevention fails. It evolved from a single tool into a layered stack as attacks moved past what any one control could catch.

Signature antivirus, the original layer. Traditional antivirus matches files against a database of known-bad hashes and patterns. It is fast and still worth having against commodity malware, but it only catches what it has already seen. A repacked variant or a brand-new sample has no signature yet, and a fileless attack that abuses legitimate tools like PowerShell leaves no malicious file to match at all.

Next-generation antivirus (NGAV). NGAV replaces signature-only matching with machine learning and static analysis that judge a file before it runs, including files no one has seen before. It closes part of the unknown-malware gap that signatures leave open.

Endpoint detection and response. The recording layer. Endpoint detection and response (EDR) continuously logs what happens on the host: process launches, file changes, registry edits, network connections, and logons. That telemetry lets an analyst reconstruct a full process tree, confirm what an attacker did, and respond by isolating the host, killing a process, or rolling back changes. It is the part antivirus never had: the ability to investigate and contain, not just block or allow.

Behavioral analysis. Across NGAV and EDR runs the behavioral layer, which watches what programs do rather than what they are. A document spawning a script interpreter, a process reading the memory of lsass.exe, mass file encryption: each is a malicious sequence even when every binary in it is signed and legitimate. Behavioral detection is what catches the living-off-the-land attacks that file scanners miss.

Management as the foundation. None of this works on a device you do not know exists. Endpoint management keeps the inventory current, pushes patches, enforces configuration, and confirms the security agent is actually installed and healthy. You cannot protect, or even see, an endpoint that is not on the books.

These layers usually ship together as an endpoint protection platform (EPP): one agent on the device, one console for the analyst, multiple detection engines underneath. Extend that same detect-and-respond model across network, cloud, email, and identity telemetry and it becomes XDR. The endpoint stays the core; XDR is the view around it.

The endpoint as the front line

AspectWhat it means for a defender
Role on the networkA node that originates or consumes data, not infrastructure that forwards it
Why attackers target itWhere people and untrusted input meet: the most common initial access point
What it offers an intruderA foothold for credential theft, lateral movement, and reaching high-value systems
What it offers a defenderThe richest evidence: process tree, file and registry changes, network connections
The hard casesIoT and unmanaged devices that have an IP and vulnerabilities but cannot run an agent
The core controlEDR telemetry plus disciplined endpoint management and patching

The table reduces to one idea: the endpoint is the front line in both directions. It is the attacker's most likely way in and the defender's best source of truth about what happened. The same device that gets compromised is the one that recorded the compromise, which is why endpoint telemetry is the spine of most investigations.

Where the endpoint sits in the SOC

For a blue team, the endpoint is rarely looked at alone. Its value shows up in how it connects to the rest of the operation.

Detection. Most high-fidelity alerts start on an endpoint, because that is where malicious code runs. An EDR detection mapped to a MITRE ATT&CK technique tells an analyst not just that something is wrong but what kind of wrong, which makes triage faster.

Investigation. When an alert is confirmed, the endpoint's recorded history is the primary evidence. The process tree shows parent and child processes, the timeline shows the order of events, and the artifacts (files dropped, registry keys set, connections made) show scope. This is the difference between knowing an alert fired and knowing what the attacker did.

Response. Containment usually happens at the endpoint first. Isolating a host cuts the compromised machine off from the rest of the network while keeping it online for investigation, so an active intrusion stops at one device instead of spreading.

Hunting. The same recorded telemetry is the hunting ground. Analysts search endpoint history across the fleet for the subtle activity that fired no alert, often starting from a threat-intel hypothesis: if an actor favors a specific persistence technique, hunt for its traces on every host.

The constant is the analyst. The endpoint and its tooling generate the signal: the process tree, the verdict, the timeline. A person decides whether it is an attacker or an administrator doing something unusual. The endpoint produces the evidence. Reading it is the skill.

Frequently Asked Questions

What is an endpoint in simple terms?

An endpoint is any device that connects to a network and can send or receive data, such as a laptop, desktop, server, phone, tablet, or internet-connected device like a printer or camera. It sits at the edge of the network and runs its own software, which is what makes it both useful and a target. Network gear that only forwards traffic, like switches and routers, is infrastructure rather than an endpoint.

What is an example of an endpoint?

Common endpoints include laptops, desktops, servers, smartphones, tablets, virtual machines, and cloud workloads. The category also covers point-of-sale terminals, IP cameras, printers, smartwatches, and other Internet of Things devices. If a device has its own network connection and runs its own code, it is an endpoint you need to account for.

Is a server an endpoint?

Yes. A server is an endpoint because it connects to the network and runs its own software, even though it provides services to other machines rather than to a user sitting in front of it. Servers are often the highest-value endpoints: a domain controller, database server, or file server holds far more risk per device than a single workstation, so they get priority protection and monitoring.

What is the difference between an endpoint and a network device?

An endpoint originates or consumes data and runs its own applications, like a laptop or server. A network device, such as a switch or router, forwards traffic between endpoints rather than running the applications an attacker wants to execute. The distinction is about role: endpoints are destinations on the network, network infrastructure is the path between them. Both are assets you defend, but only endpoints run the code where most attacks land.

Why are endpoints a target for attackers?

Endpoints are where people and untrusted input meet, which makes them the most common initial access point in breaches. A user opens a malicious attachment or a server exposes a vulnerable service, and the attacker gains a foothold. From that one compromised endpoint they can steal credentials, move laterally, and reach high-value systems. The first machine is the door, not the destination.

What is endpoint security?

Endpoint security is the practice of protecting network-connected devices from threats and recording their activity so analysts can investigate when prevention fails. A modern endpoint stack layers signature antivirus, next-generation antivirus, behavioral analysis, and endpoint detection and response, usually delivered as one agent and console (an endpoint protection platform). It both blocks threats and captures the telemetry, like the process tree and timeline, that an investigation depends on.

How is an IoT device an endpoint?

An Internet of Things device, like an IP camera, smart sensor, or networked printer, is an endpoint because it has a network connection and runs its own firmware. It is one of the hardest endpoints to secure: many run outdated software, ship with default credentials, and cannot host a security agent, so they expand the attack surface without adding visibility. Defenders treat them as untrusted by default and segment them away from critical systems.

The bottom line

An endpoint is any device that connects to a network and runs its own code: laptops, servers, phones, virtual machines, and the long tail of IoT hardware that keeps growing. What separates an endpoint from network infrastructure is role. The endpoint is a destination that executes software and holds data, not a relay that forwards traffic, and that is exactly why it is where attacks land.

For a defender, the endpoint is the front line in both directions. It is the attacker's most likely way in, the foothold for credential theft and lateral movement, and at the same time the richest source of evidence about what happened, because the machine that got compromised is the one that recorded the compromise. Protecting it means a layered stack, NGAV and behavioral detection for prevention, EDR for the telemetry and the response, and disciplined endpoint management so nothing runs unseen. The tooling produces the signal. A person reading the process tree is still the part that decides.

Frequently asked questions

What is an endpoint in simple terms?

<p>An endpoint is any device that connects to a network and can send or receive data, such as a laptop, desktop, server, phone, tablet, or internet-connected device like a printer or camera. It sits at the edge of the network and runs its own software, which is what makes it both useful and a target. Network gear that only forwards traffic, like switches and routers, is infrastructure rather than an endpoint.</p>

What is an example of an endpoint?

<p>Common endpoints include laptops, desktops, servers, smartphones, tablets, virtual machines, and cloud workloads. The category also covers point-of-sale terminals, IP cameras, printers, smartwatches, and other Internet of Things devices. If a device has its own network connection and runs its own code, it is an endpoint you need to account for.</p>

Is a server an endpoint?

<p>Yes. A server is an endpoint because it connects to the network and runs its own software, even though it provides services to other machines rather than to a user sitting in front of it. Servers are often the highest-value endpoints: a domain controller, database server, or file server holds far more risk per device than a single workstation, so they get priority protection and monitoring.</p>

What is the difference between an endpoint and a network device?

<p>An endpoint originates or consumes data and runs its own applications, like a laptop or server. A network device, such as a switch or router, forwards traffic between endpoints rather than running the applications an attacker wants to execute. The distinction is about role: endpoints are destinations on the network, network infrastructure is the path between them. Both are assets you defend, but only endpoints run the code where most attacks land.</p>

Why are endpoints a target for attackers?

<p>Endpoints are where people and untrusted input meet, which makes them the most common initial access point in breaches. A user opens a malicious attachment or a server exposes a vulnerable service, and the attacker gains a foothold. From that one compromised endpoint they can steal credentials, move laterally, and reach high-value systems. The first machine is the door, not the destination.</p>

What is endpoint security?

<p>Endpoint security is the practice of protecting network-connected devices from threats and recording their activity so analysts can investigate when prevention fails. A modern endpoint stack layers signature antivirus, next-generation antivirus, behavioral analysis, and endpoint detection and response, usually delivered as one agent and console (an endpoint protection platform). It both blocks threats and captures the telemetry, like the process tree and timeline, that an investigation depends on.</p>

Practice track
SOC Analyst Tier 1
Build your foundational skills to monitor, detect, and escalate security alerts. This track includes essential tools, basic log analysis, and introductory incident response labs.
Browse SOC Analyst Tier 1 Labs โ†’