Threat Intelligence

What Is Lateral Movement in Cybersecurity?

Model each lateral hop as a source, identity, remote channel, and target, then break the relationships attackers need.

Alex Gibson, Cofounder and Principal at Artemes AI
Alex Gibson
Cofounder, Principal
Sep 5, 2026 11 min read
Four condition lateral movement chain showing source, identity, remote channel, target, and defensive gates

The problem with lateral movement is not that an attacker crosses the network. It is that normal trust lets one compromised identity and device reach the next system.

So, what is lateral movement? It is the set of actions an adversary uses after gaining a foothold to enter and control additional systems, identities, services, or cloud resources. The attacker is trying to turn limited access into useful reach. They often use valid credentials and approved administration channels, which is why the activity can look ordinary.

Defenders should stop treating movement as a list of hacker tools. Model each hop as four conditions: a controlled source, usable identity, allowed remote channel, and target that accepts the access. Break one condition to stop the hop. Remove repeated conditions to shrink the path across the environment.

Infographic

Lateral movement needs four usable conditions

Remove any one condition to stop the hop. Remove repeated conditions to shrink the whole path.

Four conditions required for a lateral movement hopA chain shows a compromised source, usable identity, allowed remote channel, and reachable target. Defensive gates below each condition can break the hop.One hop, four required conditions1SourceCompromised hostDefensive gateIsolate device2IdentityCredential or tokenDefensive gateRestrict logon3ChannelRDP, SMB, SSH, APIDefensive gateNarrow route4TargetSystem accepts accessDefensive gateRemove privilegeNo complete chain means no successful lateral hop

What is lateral movement in cybersecurity?

MITRE ATT&CK defines Lateral Movement as tactic TA0008, covering techniques adversaries use to enter and control remote systems. The current Enterprise page contains nine technique families. They include remote services, alternate authentication material, remote service session hijacking, exploitation of remote services, software deployment tools, and lateral tool transfer.

A move does not have to be sideways on a flat office network. An attacker can move from a laptop identity to a cloud console, from a build service to a deployment system, from a virtual machine to a management plane, or from one software service to another through a shared token. Trust crosses environments faster than network diagrams do.

The defining event is new control over another resource. Discovery may reveal the target. Credential access may provide the identity. Privilege escalation may increase its power. Lateral movement uses those gains to establish access somewhere else.

How is lateral movement different from related attack stages?

Initial access gets the adversary into an environment. Privilege escalation raises rights. Credential access steals or captures authentication material. Discovery maps systems and relationships. Lateral movement uses a remote path to control another resource. These actions often interleave, but the distinction tells responders which condition failed.

Suppose an actor phishes a user and controls a workstation. That is initial access. They collect a local administrator hash. That is credential access. They query nearby servers. That is discovery. They use the hash over SMB to authenticate to a file server. That is lateral movement. They then find a more powerful token on that server and repeat the cycle.

This sequence is why containment cannot stop at the first machine. The endpoint is the place you noticed. The identity and trust relationships tell you where the actor may already have gone.

Which conditions make a lateral movement hop possible?

First, the actor needs a source they control. It may be an endpoint, server, cloud session, browser session, or management service. Second, they need authentication material or a flaw that the target will accept. A password, hash, ticket, key, certificate, cookie, or application token can fill that role.

Third, a remote channel must connect source to target. RDP, SMB, WinRM, SSH, VNC, administrative APIs, and software deployment systems exist because operations teams need them. Fourth, the target must grant enough access to matter. Network reach without accepted identity is not a completed hop. A valid credential with no route is not a completed hop either.

The model gives every control a job. Endpoint isolation removes the source. Credential revocation removes the identity. Segmentation removes the channel. Least privilege removes useful control at the target. Detection should show which relationship became new or abnormal.

What does current incident data say about movement speed?

The 2026 incident data makes one point hard to ignore. Defenders may not have days to reconstruct trust. In a July 2026 analysis drawn from its Global Incident Response Report, Unit 42 said the fastest observed cases reached confirmed data exfiltration in 72 minutes, four times faster than the prior year. It also reported that 65 percent of initial access was driven by techniques based on identity. Review the primary Unit 42 incident analysis for its scope.

These are not universal clocks for every intrusion. They are a warning about operating assumptions. A response process that waits an hour for identity ownership, another hour for network approval, and a third hour for server access may finish after the attacker has reached the objective.

The development many older guides focused on networks miss is the pivot across surfaces. Current attacks can move across identity, endpoint, cloud, and software services in one chain. The control plane is often the shortest route, because one privileged service can reach hundreds or thousands of resources.

What are common lateral movement techniques?

Remote services are the daily workhorse. An attacker uses valid material to authenticate through RDP, SMB, WinRM, SSH, VNC, a cloud service, or a direct cloud virtual machine connection. The protocol is not proof of abuse. The unexpected source, identity, target, time, or action that follows creates the signal.

Alternate authentication material includes password hashes, Kerberos tickets, application access tokens, and web session cookies. Resetting a password may not invalidate every stolen artifact. Responders must identify the material, where it was accepted, and how to revoke it.

Central software deployment and management tools can execute across a fleet. Attackers do not need to move one host at a time if a control plane will do it for them. Treat those systems as critical identity and execution infrastructure, with limited administrators, managed source devices, strong logging, and recovery plans.

Trusted system utilities can support movement, execution, and discovery without introducing a new executable. TheLOLBins guide explains why parent process, command, identity, destination, and history matter more than a valid signature.

How do you detect lateral movement?

Detect relationships, not isolated logons. Build a record with source, identity, target, channel, authentication type, process, time, device role, privilege, and prior frequency. Then ask whether the complete edge is expected. A known administrator using RDP from a managed workstation to an assigned server is different from the same identity reaching a domain controller from a finance laptop.

Watch for identity and target pairs seen for the first time, one source reaching many targets, powerful identities appearing on lower trust devices, NTLM where Kerberos is expected, remote access outside approved management networks, unusual service creation, administrative share use, and remote actions followed by control changes. Test the relationships that matter. A generic “unusual login” rule is rarely enough.

On Windows, start by reviewing successful logons, explicit credential use, and network share access. This query only reads candidate events from the last hour. The hash table follows Microsoft's official Get-WinEvent syntax.

$start = (Get-Date).AddHours(-1)
Get-WinEvent -FilterHashtable @{
  LogName='Security';
  Id=4624,4648,5140;
  StartTime=$start
} | Select-Object TimeCreated, Id, MachineName, Message

Event 4624 records a successful logon, 4648 records an attempt using explicit credentials, and 5140 records the first access to a network share during a session. Volume will be high in many environments. Parse the fields, join source and target records, remove machine accounts where appropriate, and compare the resulting edges with approved administration.

Keep command and process evidence near authentication evidence. A remote logon followed by service installation, task creation, a script host, or a new outbound connection is a stronger case than either event alone. The MITRE ATT&CK framework guide shows how to connect technique mapping with data requirements and approved tests.

Which controls prevent lateral movement?

Protect privileged credentials by separating administration from daily work. Use managed administrative devices, distinct accounts, authentication that resists phishing where supported, and explicit logon restrictions. Do not let powerful identities sign in to systems where a lower trust user or process can capture their material.

Narrow remote channels by source, target, identity, and purpose. Workstations rarely need administrative access to every server. Servers rarely need to initiate sessions to unrelated peers. Management platforms need broad reach, so their own access and update paths need exceptional control. The practical guide to preventing lateral movement shows how to cut and verify those routes without freezing required work.

Reduce accepted privilege at each target. Unique local administrator credentials, managed service identities, access with a short lifetime, separate administrative tiers, and removal of stale group membership all reduce the value of a stolen account. The Kerberoasting defense guide covers service account secrets and privilege paths in more depth.

Simple math makes path reduction visible. Suppose 12 administrator accounts can each reach 40 servers. That is up to 480 identity and target edges. Restrict each account to four assigned servers and the maximum falls to 48. Removing 432 possible edges does not guarantee safety, but it makes a stolen identity less useful and unusual access easier to detect.

What does lateral movement look like in a real workflow?

A support engineer opens an email attachment on a standard workstation. The actor gains control of that session and finds a cached support credential. The account can reach a management server over WinRM. From there, a deployment service can execute on 800 endpoints. The dangerous path has only two remote hops, but its final control plane multiplies reach.

A tool list would focus on the attachment and WinRM. The relationship model finds four repair points. Remove support credentials from standard workstations. Restrict WinRM to managed source devices. Limit the support account to assigned systems. Separate deployment approval from interactive administration. Alert when a new source uses the account or the management server targets a device outside its normal group.

That is the operational difference between detecting one incident and repairing the path. The first removes the current actor. The second makes the same route harder for the next actor.

How should incident response contain lateral movement?

Contain source systems and identity material together. Isolating the first endpoint while leaving its active tokens, cloud sessions, keys, and passwords valid preserves the path. Resetting a password while the actor controls a privileged management server is equally incomplete.

Build the movement timeline from authentication, endpoint, network, directory, cloud, and control plane evidence. Identify every new source and target relationship. Revoke affected material. Restrict remote channels. Protect identity and management infrastructure before ordinary hosts. Then verify that restored systems no longer accept the old path.

Preserve evidence before destructive cleanup where policy and safety permit. Record unknowns. If a log source was absent or retention expired, do not report the path as clean. Report the boundary of what the team could verify.

Which lateral movement metrics matter?

Track reachable identity and target edges, powerful accounts present on lower trust systems, systems accepting remote administration from broad sources, new relationship alerts, time from first suspicious hop to identity restriction, time to contain affected control planes, and percentage of important paths tested in the last quarter.

Count evidence health as well. Missing source addresses, unresolved identities, stale asset roles, short retention, and disconnected cloud logs can make a quiet graph look safe. Absence of observed movement is not proof that the path does not exist.

What should a team do in the next 30 days?

  1. Choose ten systems whose loss would cause material business damage.
  2. List every identity, source type, remote channel, and control plane that can reach them.
  3. Remove stale edges and restrict ordinary endpoints from administrative access.
  4. Build one detection for a new source, identity, and target relationship on each important path.
  5. Run an approved test, measure the alert and containment path, then repair the slowest ownership handoff.

Do not begin by buying another graph. Begin by checking whether anyone can explain the ten paths, produce current evidence, and name the person authorized to close an unnecessary edge.

Frequently asked questions

What is lateral movement in simple terms?

It is how an attacker turns access to one system or account into control of another resource after the initial foothold.

Is lateral movement always malicious?

No. Administrators and applications move across systems every day. Malicious movement abuses those relationships. Detection depends on whether the source, identity, channel, target, and action fit approved work.

What is the most common sign of lateral movement?

A new or abnormal authentication relationship is a strong starting point, especially when it is followed by remote execution, service changes, tool transfer, or access to a sensitive system.

Does network segmentation stop lateral movement?

It can remove important channels, but identity, cloud, management, and application trust may cross network segments. Pair segmentation with logon restrictions, least privilege, control plane protection, and testing.

The executive takeaway

Ask for the complete access path to ten critical systems: source, identity, channel, and target. Remove every edge without a current owner and business purpose. Alert on new relationships and measure how fast the team can revoke identity and isolate control planes together. AI analysis of deep endpoint context can help assemble the evidence. Leadership still has to decide which trust the business is willing to keep.

Artemes AI

Put more evidence behind vulnerability decisions

Artemes AI combines endpoint telemetry, sourced vulnerability intelligence, and analysis with practitioner review so teams can examine the evidence, missing context, and recommended next step together. We are accepting early access requests now.

Alex Gibson, Cofounder and Principal at Artemes AI

Alex Gibson

Cofounder, Principal

Alex writes about configuration drift, operational security evidence, endpoint telemetry, triage supported by AI, and the practical work of turning signals into better remediation decisions.

Lateral Movement
Threat Modeling
Blue Team
Found this useful? Share it.

Get articles like this in your inbox.

Security research and occasional Artemes AI product updates.