Lateral Movement in Cybersecurity:

Techniques, Detection & Prevention Guide (2026)

Most breaches don't fail at entry. They fail or succeed in what happens next.

Once an attacker gets inside your network, the real work begins: finding valuable systems, stealing credentials, escalating privileges, and spreading quietly until they reach whatever they came for. This phase — moving from one compromised system to others across the network is called lateral movement, and it's the stage where most high-impact attacks are actually won or lost.

Lateral movement is why a phishing email that tricks one employee can end with ransomware encrypting your entire domain. It's why a stolen contractor credential at Target exposed 40 million payment cards. It's how SolarWinds attackers moved through 18,000 organizations without triggering alerts for months.

Understanding how attackers move laterally — the techniques they use, how defenders detect them, and what stops them is foundational to any serious security posture. This guide covers all of it.

What Is Lateral Movement?

Lateral Movement Definition

Lateral movement refers to the techniques attackers use to progressively move through a network after gaining initial access pivoting from one compromised host to another, harvesting credentials, escalating permissions, and working toward high-value targets like domain controllers, databases, or backup systems. It's "lateral" because the movement is horizontal: across systems at the same or varying privilege levels within the environment, as opposed to vertical movement, which refers to privilege escalation on a single system.

Why Attackers Use Lateral Movement

Initial access rarely lands attackers where they want to be. A phishing email compromises an employee's workstation. A brute-forced VPN account gives entry to a low-privilege session. An exploited public-facing application yields a foothold on a web server. None of these endpoints typically holds the data or systems the attacker is actually after.

Lateral movement bridges that gap. It lets attackers:

  • Discover what's on the network and where critical assets live
  • Access systems they couldn't reach directly from outside
  • Accumulate credentials and permissions incrementally
  • Reach domain controllers, databases, backup systems, and financial records
  • Stage and deploy ransomware, exfiltrate data, or establish persistent access

Lateral Movement in the Cyber Kill Chain

In Lockheed Martin's Cyber Kill Chain, lateral movement appears in the later stages — after initial exploitation and installation, as the attacker works toward their objective. In practice, it's an iterative loop: reconnaissance leads to credential access leads to movement leads to more reconnaissance, cycling until the attacker reaches their target or gets detected.

MITRE ATT&CK Mapping (TA0008)

MITRE ATT&CK classifies lateral movement as tactic TA0008, defining it as techniques that enable adversaries to enter and control remote systems on a network. The tactic includes over a dozen techniques covering remote service abuse, internal spearphishing, use of alternate authentication material, and more.

  • Lateral movement = spreading across systems.
  • Vertical movement (privilege escalation, TA0004) = gaining higher permissions on a single system.

In practice, attackers alternate between both — moving laterally to reach a system, then escalating privileges on it before moving again.

Why Lateral Movement Is Dangerous

It Expands the Blast Radius

A single compromised endpoint is a contained problem. Lateral movement turns it into a network-wide incident. Attackers who move freely across systems can touch every host, every file share, every database turning one phishing click into a company-wide breach. The majority of breaches involve lateral movement techniques. The moment an attacker leaves their initial foothold, your exposure multiplies.

It Enables Ransomware Deployment

Modern ransomware isn't deployed immediately after initial access. Attackers first move laterally to map the environment, disable backups, escalate privileges, and position ransomware payloads on as many systems as possible, then trigger encryption simultaneously for maximum impact. According to Barracuda's Ransomware Insights Report, 25% of successful ransomware incidents in 2025 involved lateral movement across networks, with attackers accessing and wiping backups in 19% of cases.

It Helps Attackers Reach Crown Jewel Assets

Most organizations' most sensitive data — customer records, financial systems, intellectual property, Active Directory is not sitting on endpoint workstations. It's on servers, databases, and infrastructure that attackers can only reach through lateral movement.

It Increases Dwell Time

Dwell time is how long an attacker operates undetected inside your environment and this is directly tied to lateral movement. The longer they move freely, the more damage they can stage. In 2025, the global median attacker dwell time was 14 days, according to Mandiant's M-Trends 2026 report. For ransomware specifically, the median was five days — attackers move fast when they want to encrypt.

It's Getting Dramatically Faster

Speed is increasingly the defining feature of modern lateral movement. The average time from initial compromise to lateral movement dropped 29% year over year — from 48 minutes in 2024 to 34 minutes in 2025, according to IBM research. The fastest observed attack began lateral movement within four minutes of entry. CrowdStrike's 2026 Global Threat Report puts the interval between initial compromise and lateral movement at just 29 minutes — a 65% acceleration from the prior year.

It Evades Traditional Security Tools

Lateral movement is hard to detect because it largely uses legitimate tools: built-in Windows utilities, standard remote access protocols, valid credentials. From a perimeter security standpoint, nothing looks wrong. The traffic is internal and the tools are the same ones your IT team uses every day.

Stages of a Lateral Movement Attack

Stage 1: Initial Access

Before any lateral movement can happen, attackers need a foothold. Common entry vectors include:

  • Phishing emails: the most prevalent initial access method, used in the majority of ransomware incidents
  • Stolen or purchased credentials: often sourced from prior breaches or dark web markets
  • Exposed RDP: internet-facing Remote Desktop Protocol is a perennial attacker favorite
  • Unpatched vulnerabilities: public-facing applications with known CVEs
  • Third-party vendor access: as Target demonstrated in 2013, trusted supplier credentials bypass perimeter controls entirely
  • Malicious attachments or drive-by downloads: delivering initial malware payloads

Stage 2: Internal Reconnaissance

Once inside, attackers don't move immediately. They survey the environment first.

  • Network Discovery: Attackers map the internal network to understand its structure, identify segments, and locate high-value targets. Common commands include net view, arp -a, ipconfig /all, and nmap-style scanning.
  • Active Directory Enumeration: Active Directory is the backbone of most enterprise environments — and the primary target of lateral movement. Attackers use tools like BloodHound to map AD relationships, identify privileged accounts, and find shortest paths to Domain Admin. Commands like nltest /domain_trusts and PowerShell's Get-ADUser reveal accounts, groups, and trust relationships.
  • Open Port Scanning: Internal port scans reveal which services are running on which hosts — identifying SMB shares, RDP endpoints, WMI services, and SQL databases that can be pivoted through.
  • Shared Resource Discovery: net share, net view \\hostname, and PowerShell enumeration reveal accessible file shares, which often contain credentials stored in scripts, configuration files, or documents.

Stage 3: Credential Access

Credentials are the currency of lateral movement. With valid credentials, attackers can authenticate to systems legitimately, making detection far harder.

  • Credential Dumping: Extracting credentials from memory, the registry, or credential stores. Mimikatz is the most widely known tool; it can extract plaintext passwords, NTLM hashes, and Kerberos tickets from Windows memory.
  • LSASS Memory Attacks: The Local Security Authority Subsystem Service (LSASS) stores authentication credentials in memory. Attackers dump LSASS process memory using tools like Mimikatz (sekurlsa::logonpasswords), Task Manager, or custom malware. This is one of the most common credential access techniques in active campaigns (MITRE T1003.001).
  • Keylogging: Malware that captures keystrokes as users type credentials — particularly effective when attackers establish persistence and wait for privileged users to log in.
  • Token Theft: Windows access tokens represent the security context of a running process. Attackers with sufficient privileges can steal or impersonate tokens to gain the permissions of another user without needing their password (MITRE T1134).

Stage 4: Privilege Escalation

Harvested credentials often belong to standard users. Attackers escalate to gain administrative or domain-level privileges.

  • Local Admin Abuse: If stolen credentials have local admin rights on multiple machines — a common configuration in poorly managed environments, attackers can authenticate to and control many systems immediately.
  • Domain Privilege Escalation: The goal is usually Domain Admin. Techniques include exploiting misconfigured Active Directory ACLs, abusing delegation settings, or targeting accounts with excessive permissions.
  • Kerberos Abuse: Kerberoasting and AS-REP roasting attack Kerberos authentication to extract and crack service account password hashes offline — a stealthy technique that generates minimal logs.

Stage 5: Lateral Spread

With credentials and elevated privileges, attackers move to new systems.

  • SMB (Server Message Block): SMB is the Windows file-sharing protocol and one of the most frequently abused lateral movement channels. Attackers authenticate to \\hostname\ADMIN$ or \\hostname\C$ shares to copy and execute malware. NotPetya spread almost entirely via SMB.
  • RDP (Remote Desktop Protocol): Legitimate remote desktop access, abused with stolen credentials. Attackers pivot through RDP sessions as if they were authorized IT staff.
  • WMI (Windows Management Instrumentation): WMI enables remote command execution with no file written to disk, making it difficult for endpoint tools to detect. Attackers use wmic /node:hostname process call create "cmd.exe /c malware.exe".
  • PsExec: A legitimate Sysinternals tool for remote process execution. Widely used by admins — and equally widely abused by attackers to push and execute code across systems. It authenticates via SMB and creates a remote service, generating Windows Event ID 7045.
  • PowerShell Remoting: Enter-PSSession and Invoke-Command allow remote PowerShell execution across the network. Heavily used in living-off-the-land attacks because PowerShell is present on every Windows system.
  • Remote Services: SSH in Linux environments, WinRM, and other remote service protocols serve as lateral movement channels depending on the environment.

Stage 6: Target Access and Impact

Having moved through the network and accumulated sufficient privileges, attackers reach their objectives.

  • Data Exfiltration: Staged data is compressed, encrypted, and sent to attacker-controlled infrastructure often through legitimate channels like HTTPS or cloud services to blend with normal traffic.
  • Ransomware Deployment: Ransomware is pushed to all reachable systems and triggered simultaneously. Attackers time execution to coincide with low-coverage windows — nights, weekends, holidays.
  • Domain Controller Compromise: Reaching a Domain Controller is effectively full control of the Windows environment. Attackers can create new admin accounts, dump the entire Active Directory credential database (NTDS.dit), and establish persistence that survives incident response.
  • Persistence Establishment: Scheduled tasks, registry run keys, new user accounts, and implanted backdoors ensure the attacker retains access even if the initial compromise is cleaned up.

Common Lateral Movement Techniques

  • Pass-the-Hash (PtH): One of the most common and effective lateral movement techniques in Windows environments. Instead of cracking a captured NTLM hash to recover the plaintext password, attackers reuse the hash directly to authenticate to other systems. Since Windows NTLM authentication accepts the hash as proof of identity, no password is needed. Tools like Mimikatz and Impacket make PtH trivial to execute (MITRE T1550.002).
  • Pass-the-Ticket (PtT): Kerberos uses tickets to authenticate users to services. Attackers who extract Kerberos tickets from memory (using Mimikatz's sekurlsa::tickets module) can inject them into their current session and authenticate to services as the ticket's legitimate owner — without ever touching a password (MITRE T1550.003).
  • Remote Desktop Protocol (RDP) Abuse: RDP is legitimate remote access turned attacker transport. With valid credentials, attackers connect to systems exactly as authorized users would. RDP sessions are often used to manually explore new systems, install tools, and stage subsequent movements. MITRE T1021.001.
  • SMB Relay Attacks: Rather than cracking captured NTLM hashes, SMB relay attacks intercept authentication attempts and relay them to other systems in real time — allowing attackers to authenticate to a third system using another machine's credentials. Particularly effective in environments where NTLM signing is not enforced.
  • PsExec Abuse: PsExec is the most recognizable tool in attacker lateral movement toolkits. It copies an executable to the target's ADMIN$ share and creates a Windows service to run it remotely. Despite being a legitimate admin tool, its signature is well-known — most threat intel rules monitor for it explicitly (MITRE T1021.002).
  • Windows Admin Shares: The hidden administrative shares (ADMIN$, C$, IPC$) on Windows systems allow remote access to the file system for users with administrative credentials. Attackers use these shares to copy tools, read files, and stage malware without needing separate file transfer utilities.
  • PowerShell Exploitation: PowerShell's built-in remoting capabilities make it a premier lateral movement channel. Attackers run remote commands, download additional payloads, disable security tools, and extract data — all through a signed, trusted Windows binary. Many campaigns encode PowerShell commands in Base64 to evade simple string matching.
  • WMI-Based Movement: WMI enables remote process execution, event subscription, and data queries — all without writing files to disk in many configurations. Its legitimate use makes it difficult to block outright. Attackers use WMI to execute payloads silently and establish persistent event subscriptions that survive reboots (MITRE T1047).
  • Living Off the Land (LOTL): The broader strategy of using legitimate, built-in tools rather than custom malware. PsExec, PowerShell, WMI, certutil, mshta, regsvr32 — attackers exploit Windows' own administrative capabilities. This dramatically reduces the malware footprint and defeats signature-based detection. 75% of initial access attempts in 2025 were malware-free, relying on credentials, social engineering, and identity misuse instead.
  • Golden Ticket & Kerberos Abuse: A Golden Ticket is a forged Kerberos Ticket Granting Ticket (TGT) created using the NTLM hash of the KRBTGT account — Active Directory's Kerberos service account. With a Golden Ticket, attackers can impersonate any user in the domain, access any service, and maintain access even after password resets. Obtaining the KRBTGT hash requires Domain Controller access, but once obtained, the attacker has effectively permanent, unrestricted domain access (MITRE T1558.001).
  • SSH Pivoting in Linux Environments: In Linux and mixed environments, SSH is the primary lateral movement channel. Attackers chain SSH connections through compromised hosts — using a compromised server as a jumping point to reach internal systems not accessible from outside. SSH agent hijacking can allow attackers to reuse an active SSH agent's keys without ever extracting the private key (MITRE T1021.004).
  • Cloud IAM Abuse: In cloud environments, IAM roles, service accounts, and API tokens replace traditional credential material as lateral movement currency. A compromised EC2 instance with an attached IAM role can make API calls to access S3 buckets, launch new instances, assume other roles, and access resources across accounts.

Lateral Movement in Cloud Environments

Cloud environments introduce a fundamentally different lateral movement surface. Network perimeters matter less; identity and permissions define what an attacker can reach.

  • Identity-Based Lateral Movement: In cloud environments, identity is the perimeter. A compromised user account or service principal can access any resource that identity is permitted to access — instantly, without needing to compromise additional hosts. Stolen API keys, OAuth tokens, and cloud provider credentials are the cloud equivalent of domain credentials.
  • IAM Misconfigurations: Overly permissive IAM roles are endemic in cloud environments. Attackers who compromise any identity with an attached role can enumerate what that role can access and pivot accordingly. Common misconfigurations include wildcard resource permissions, excessive iam:PassRole grants, and roles assumable by any authenticated principal.
  • Kubernetes and Container Movement: Kubernetes clusters present rich lateral movement opportunities. Attackers who compromise a pod can abuse service account tokens to interact with the Kubernetes API, potentially accessing secrets, escalating to cluster-admin, or escaping to the host node. Compromised container images — as seen in the December 2024 Docker Hub incident where thousands of images contained hidden malware — can introduce pre-positioned lateral movement capabilities at deployment time.
  • API Token Abuse: Long-lived API tokens stored in environment variables, configuration files, or code repositories are frequently discovered during post-compromise reconnaissance. These tokens often have broader permissions than intended and may grant access to cloud services, CI/CD pipelines, and external SaaS platforms.
  • CI/CD Pipeline Compromise: Compromised CI/CD systems represent some of the highest-value lateral movement targets in modern environments. A pipeline with deploy access can push code to production, modify infrastructure, exfiltrate secrets from environment variables, and access every connected service. The SolarWinds attack demonstrated the catastrophic potential of build pipeline compromise.
  • Cross-Cloud Privilege Escalation: Organizations using multiple cloud providers face cross-cloud lateral movement risks. An attacker who compromises an AWS role with permissions to assume roles in a linked Azure tenant — or vice versa — can traverse cloud boundaries invisibly.

Lateral Movement in Ransomware Attacks

Ransomware is no longer a spray-and-pray operation. Modern ransomware campaigns are methodical, patient, and heavily dependent on lateral movement to maximize impact.

How Ransomware Operators Spread Internally

After initial access, ransomware operators — or their affiliates — conduct reconnaissance, identify backup systems, escalate privileges, and spread ransomware payloads to as many systems as possible before triggering encryption. The goal is to compromise everything simultaneously, eliminating the organization's ability to recover from backups.

  • LockBit, before law enforcement disruption in 2024, was responsible for approximately 1,700 ransomware attacks in the US alone, with $91 million in ransom paid. The group relied on Mimikatz for credential harvesting and PsExec for lateral movement.
  • BlackCat/ALPHV's 2024 attack on Change Healthcare used stolen credentials to move laterally through the network before deploying ransomware, causing widespread disruption to healthcare operations and a reported $22 million ransom payment.

Double Extortion Tactics

Modern ransomware operators don't just encrypt — they exfiltrate first. This gives them leverage even against organizations with working backups: pay the ransom, or your data gets published. This double extortion model requires extensive lateral movement to locate and stage the most sensitive data before encryption begins.

The Accelerating Ransomware Ecosystem

In 2025, a ransomware attack occurs somewhere in the world every approximately 19 seconds. Following law enforcement disruptions of LockBit and BlackCat/ALPHV in 2024, RansomHub emerged as the most prolific group, claiming 239 victims in Q4 2024 alone. The ransomware market has fragmented: no single group controlled more than 11% of market share in 2024, compared to LockBit's 34% dominance in 2023. More operators, moving faster, using the same lateral movement techniques.

How to Detect Lateral Movement

Lateral movement is hard to catch precisely because it blends into legitimate activity. Effective detection requires correlating data across multiple sources rather than relying on any single signal.

Network Traffic Analysis

East-west traffic — communication between internal hosts, is where lateral movement lives. Most organizations focus security tools on north-south traffic (in/out of the network) and have limited visibility into internal traffic. Network detection and response (NDR) tools that perform deep packet inspection and session reconstruction can surface anomalous internal connections that endpoint tools miss. Watch for: internal hosts initiating SMB connections to many other hosts; unexpected RDP connections between workstations; high-volume internal traffic at unusual hours.

Authentication Monitoring

Lateral movement almost always involves authentication events. Key Windows Event IDs to monitor:

  • 4624 — Successful logon (watch for Logon Type 3 = network, Type 10 = remote interactive)
  • 4625 — Failed logon (multiple failures across different hosts suggest credential spraying)
  • 4769 — Kerberos service ticket request (high volume may indicate Kerberoasting)
  • 4648 — Logon using explicit credentials (pass-the-hash and token abuse leave traces here)

Alert on: a single account authenticating to an unusual number of systems in a short window; logons occurring from IPs that don't match the account's normal pattern; service ticket requests for sensitive SPNs from non-privileged accounts.

Endpoint Detection and Response (EDR)

EDR tools with behavioral analytics can flag suspicious process creation chains, credential access patterns, and LOTL tool usage even without specific malware signatures. Key indicators: Mimikatz execution patterns (even when renamed); LSASS memory access by non-system processes; PsExec service creation (Event ID 7045); abnormal PowerShell command-line arguments.

User and Entity Behavior Analytics (UEBA)

UEBA platforms establish baselines of normal behavior for users and systems, then alert on deviations. A user account that normally accesses five file shares suddenly accessing 200 — or authenticating to 30 hosts in an hour — triggers anomaly detection even without known attack signatures.

SIEM Correlation Rules

Standalone alerts generate too much noise. SIEM correlation rules that chain multiple events — a failed login followed by a successful login from the same IP, followed by lateral SMB connections from the newly authenticated host — dramatically improve signal quality. CISA's 2025 detection engineering guidance emphasizes multi-source correlation as the backbone of accurate threat detection.

Windows Event Log Monitoring

Beyond authentication events, monitor:

  • Event ID 7045 — New service installed (PsExec indicator)
  • Event ID 4688 — Process creation with command-line logging enabled
  • Event ID 5140 — Network share accessed
  • Event ID 4103/4104 — PowerShell script block logging

Deception Technology and Honeypots

Honeypots — fake systems or credentials with no legitimate business use — generate extremely high-fidelity alerts. Any interaction with a honeypot account or system is almost certainly malicious. Honey credentials (fake credentials seeded in likely dumping locations) trigger alerts when they're used anywhere on the network.

East-West Traffic Monitoring

The 2024 Verizon DBIR identified credential abuse and internal misuse as dominant breach patterns — both of which manifest in east-west traffic. Organizations that instrument their internal network segments and baseline normal host-to-host communication patterns can detect lateral movement at the network level before endpoint indicators surface.

Indicators of Lateral Movement (IoCs)

These behavioral signals warrant immediate investigation:

  • Unusual login patterns — accounts authenticating at odd hours, from unfamiliar hosts, or to systems they've never accessed before
  • Multiple failed logins across systems — credential spraying across the internal network
  • Abnormal remote connections — RDP or WinRM connections between workstations (not workstation-to-server)
  • Unexpected admin tool usage — PsExec, WMI remote execution, or PowerShell remoting initiated from user workstations
  • PowerShell execution spikes — encoded commands, unusual parent processes, network connections from powershell.exe
  • LSASS memory access — any non-system process accessing LSASS memory
  • Unauthorized SMB activity — access to ADMIN$ or C$ shares from non-administrative hosts
  • Service account anomalies — service accounts performing interactive logons or authenticating to unexpected systems
  • New local admin accounts — created accounts with admin privileges, especially on multiple systems

How to Prevent Lateral Movement

No single control stops lateral movement. Defense requires layers.

  • Network Segmentation: Flat networks are attacker-friendly networks. Segmenting your environment into zones — separating workstations from servers, production from development, IT from OT limits how far an attacker can move even with valid credentials. A compromised workstation in a properly segmented network can't directly reach the domain controller or the database server. Microsegmentation takes this further by defining communication policies at the workload level.
  • Least Privilege Access: Every account should have the minimum permissions needed to do its job — nothing more. This means eliminating shared local admin credentials, scoping service account permissions tightly, removing standing privileged access in favor of just-in-time provisioning, and auditing group memberships regularly. If every workstation has the same local admin password and that password is compromised once, every workstation is compromised.
  • Multi-Factor Authentication (MFA): Stolen credentials are the primary fuel for lateral movement. MFA doesn't eliminate the risk entirely — attackers can steal session tokens after authentication — but it raises the cost significantly. MFA should cover VPN access, RDP, privileged accounts, and cloud consoles at minimum.
  • Privileged Access Management (PAM): PAM solutions control, monitor, and audit privileged account usage. Key capabilities include password vaulting, session recording, just-in-time access, and credential injection. By centralizing control over the credentials attackers most want to harvest and abuse, PAM directly breaks the lateral movement chain.
  • Zero Trust Architecture: Zero Trust treats every connection attempt as untrusted regardless of origin. Principles include: verify every user and device before granting access; grant minimum necessary permissions; continuously validate that the session behavior matches expectations; assume breach and design controls accordingly. Zero Trust doesn't assume that traffic inside the network perimeter is safe.
  • Disable Legacy Protocols: NTLM, LM hashing, SMBv1, and other legacy protocols have known weaknesses that enable pass-the-hash, relay attacks, and credential capture. Disable them where they're not required. Enable SMB signing on all Windows systems to prevent SMB relay attacks. Restrict NTLM where Kerberos can be used instead.
  • Continuous Monitoring: Detection is only possible if you can see the activity. Continuous monitoring of authentication logs, network traffic, endpoint telemetry, and privileged account activity — with alerting on behavioral anomalies — is the prerequisite for catching lateral movement before it reaches critical systems.
  • Endpoint Hardening: Reduce the attack surface on individual endpoints: disable unnecessary services (remote registry, WMI remote access where not needed), restrict PowerShell execution policy, enable Credential Guard to protect LSASS, deploy LAPS (Local Administrator Password Solution) to randomize local admin passwords per machine, and enforce application allowlisting.
  • Patch Management: Unpatched vulnerabilities are a primary source of privilege escalation that enables lateral movement. A consistent, risk-based patching program — with priority on internet-facing systems and those with known exploitation in the wild — closes the doors attackers use to gain elevated footholds.
  • Active Directory Security: Active Directory is the crown jewel and the primary target. Specific hardening measures include: tiering AD accounts so Tier 0 (domain admin) accounts never touch workstations; enforcing Protected Users security group membership for privileged accounts; auditing ACLs for over-permissive configurations (using BloodHound); monitoring for changes to AdminSDHolder and sensitive group memberships; and protecting the KRBTGT account to prevent Golden Ticket attacks.

MITRE ATT&CK Lateral Movement Techniques

Technique MITRE ID Description
Remote Services T1021 Abusing legitimate remote service protocols (RDP, SMB, SSH, WinRM) to move between systems
SMB / Windows Admin Shares T1021.002 Authenticating to hidden admin shares (ADMIN$, C$) to copy and execute files
Remote Desktop Protocol T1021.001 Using RDP with valid credentials to access and control remote Windows systems
SSH T1021.004 Using SSH to move laterally in Linux, macOS, and cloud environments
Windows Remote Management T1021.006 Using WinRM / PowerShell Remoting for remote command execution
Pass the Hash T1550.002 Reusing captured NTLM hashes to authenticate without the plaintext password
Pass the Ticket T1550.003 Injecting stolen Kerberos tickets to impersonate users
Internal Spearphishing T1534 Sending phishing messages from a compromised internal account to gain further access
Lateral Tool Transfer T1570 Copying tools between systems using file transfer mechanisms
Taint Shared Content T1080 Planting malicious content in shared drives accessed by other users
Use Alternate Authentication Material T1550 Umbrella technique covering PtH, PtT, web session cookie theft

Tools Used in Lateral Movement

Legitimate Tools Abused by Attackers

  • PsExec — Remote process execution via SMB; a Sysinternals staple turned attacker standard
  • PowerShell — Built-in scripting and remoting engine; used for everything from reconnaissance to payload delivery
  • WMI — Windows Management Instrumentation for agentless remote command execution
  • RDP — Remote Desktop Protocol; valid remote access used with stolen credentials
  • Net.exe / Netstat / Nltest — Built-in Windows commands for network and AD enumeration
  • Task Scheduler — Used to create persistent execution across systems
  • Certutil — A certificate utility routinely abused to download payloads

Offensive Frameworks

  • Mimikatz — The canonical credential extraction tool; used for PtH, PtT, LSASS dumping, and Golden Ticket attacks
  • BloodHound — Active Directory attack path visualization; maps AD relationships to find shortest paths to Domain Admin
  • Cobalt Strike — Commercial penetration testing framework widely adopted by threat actors for C2 and lateral movement
  • Metasploit — Open-source exploitation framework with extensive post-exploitation and pivoting modules
  • Impacket — Python library implementing Windows network protocols; psexec.py, smbexec.py, and wmiexec.py are commonly used for lateral movement

Real-World Lateral Movement Examples

Target Data Breach (2013)

The Target breach remains the canonical case study in lateral movement through third-party access. In September 2013, attackers phished an employee at Fazio Mechanical Services, an HVAC contractor with network access to Target for electronic billing and project management. Using those stolen credentials, attackers entered Target's network on November 15. Over the following days, they moved laterally until they reached point-of-sale systems across 1,797 stores, installing malware that captured payment card data from live transactions.

By the time the breach was discovered by an external payment processor, 40 million payment cards and 70 million customers' personal data had been compromised. Total costs exceeded $200 million. The breach occurred because Fazio's access was not segmented from Target's internal network, and Target's own FireEye deployment generated alerts that no one investigated.

SolarWinds Attack (2020)

The SolarWinds breach, attributed to a Russian state-sponsored group, represents one of the most sophisticated lateral movement campaigns ever documented. Attackers compromised SolarWinds' software build environment and inserted a backdoor (SUNBURST) into the Orion platform's update mechanism reaching 18,000 organizations that deployed the trojanized update. From that pre-positioned foothold, attackers moved laterally using valid accounts and legitimate remote access, leveraging Orion's privileged credentials to reach high-value targets across US government and private sector networks. The attackers remained undetected for months.

Colonial Pipeline (2021)

The Colonial Pipeline attack began with a single stolen VPN credential for an account that lacked MFA, and had not been used in months. DarkSide ransomware operators entered, conducted lateral reconnaissance and privilege escalation, exfiltrated approximately 100 GB of sensitive data, and then deployed ransomware. Colonial Pipeline proactively shut down operations to prevent ransomware from spreading to operational technology systems halting roughly 45% of the East Coast's fuel supply. The ransom payment of approximately $4.4 million made headlines. The attack illustrated how a single credential without MFA can be the entry point to a catastrophic lateral movement campaign.

NotPetya (2017)

NotPetya, technically a wiper disguised as ransomware, spread through a combination of the EternalBlue SMB exploit and credential theft via Mimikatz to propagate laterally across entire organizational networks in minutes. It required no user interaction after initial infection: once inside a network, it extracted credentials from LSASS memory and used them to authenticate to other Windows hosts over SMB, then used EternalBlue to exploit unpatched systems that rejected credential-based access. NotPetya caused approximately $10 billion in global damages, taking down Maersk, Merck, FedEx's TNT division, and numerous other organizations. It remains the most destructive lateral movement campaign in recorded history.

Lateral Movement vs. Privilege Escalation

Area Lateral Movement Privilege Escalation
Goal Spread across multiple systems Gain higher permissions on a system
Direction Horizontal (east-west) Vertical (low to high privilege)
MITRE Tactic TA0008 TA0004
Example technique SMB pivoting with PsExec Exploiting local admin vulnerability
Primary concern Blast radius expansion Access to restricted resources
Typical tools PsExec, WMI, RDP, Mimikatz PtH Exploit frameworks, token impersonation
Detection signal Unusual authentication across hosts Privilege changes, UAC bypass events

In practice, these tactics are deeply intertwined. Attackers alternate: move laterally to a new host, escalate privileges on that host, use those elevated credentials to move laterally further, repeat.

The Future of Lateral Movement Detection

  • AI-Based Threat Detection: AI and machine learning are transforming both sides of lateral movement. Attackers are using AI to accelerate reconnaissance, craft more convincing phishing, and optimize attack paths. Defenders are using it to process the volume of telemetry that manual analysis cannot handle, identifying behavioral patterns that indicate lateral movement without relying on known signatures. IBM's 2026 threat intelligence research describes AI as "reshaping attacker operations by compressing decision cycles" while simultaneously enabling defenders to correlate signals at scale.
  • Graph-Based Attack Path Analysis: Tools like BloodHound map relationships within Active Directory as a graph and identify paths from compromised accounts to high-value targets. The defensive application is identifying and eliminating those paths proactively — before attackers find them.
  • Identity Threat Detection and Response (ITDR): ITDR is an emerging category focused specifically on detecting and responding to identity-based attacks — the primary mechanism of modern lateral movement. ITDR solutions monitor identity systems (Active Directory, Entra ID, Okta) for suspicious activity, enforce behavioral baselines for privileged accounts, and respond automatically to anomalous authentication patterns.
  • Cloud-Native Detection: As workloads migrate to cloud environments, lateral movement increasingly occurs through API calls and IAM role assumptions rather than network connections. Cloud-native detection tools that analyze CloudTrail, Azure Monitor, and GCP audit logs for anomalous API patterns are becoming essential complements to traditional network and endpoint detection.
  • Autonomous Threat Hunting: The speed of modern lateral movement — as low as four minutes from initial access — is outpacing human response times. Autonomous threat hunting systems that continuously analyze telemetry and investigate anomalies without waiting for analyst review are emerging as a necessary adaptation. When an attacker can move through your network in 29 minutes, detection that takes hours isn't enough.
Securden Unified PAM

Securden Unified PAM can be deployed in minutes on a server on-prem or hosted on private cloud instances. Try now.

Frequently Asked Questions

plus icon minus icon
What is lateral movement in cybersecurity?

Lateral movement refers to the techniques attackers use to progressively move through a network after gaining initial access, pivoting from one compromised host to others to reach high-value targets like domain controllers, databases, and backup systems.

plus icon minus icon
Why is lateral movement dangerous?

Because it turns a single compromised endpoint into a network-wide incident. Attackers who move freely can reach sensitive data, deploy ransomware across all systems simultaneously, disable backups, and establish persistent access — all while often appearing as legitimate internal traffic.

plus icon minus icon
What are the most common lateral movement techniques?

Pass-the-Hash, Pass-the-Ticket, RDP abuse, PsExec, WMI-based execution, SMB relay attacks, PowerShell remoting, and Kerberos abuse are the most frequently observed techniques across ransomware and nation-state campaigns.

plus icon minus icon
How do attackers move laterally in a network?

Typically in stages: gain initial access, conduct internal reconnaissance to map the environment, steal credentials (via LSASS dumping, keylogging, or token theft), escalate privileges, then use remote execution tools to authenticate to and control additional systems.

plus icon minus icon
What tools are most commonly used for lateral movement?

Mimikatz for credential extraction, BloodHound for AD attack path mapping, PsExec and WMI for remote execution, and Cobalt Strike as an overall post-exploitation framework. Legitimate Windows tools like PowerShell and RDP are also heavily abused.

plus icon minus icon
How do you detect lateral movement?

No single control is sufficient. Effective detection combines authentication log monitoring (especially Event IDs 4624, 4625, 4769, 4648), east-west network traffic analysis, EDR behavioral alerting, UEBA anomaly detection, and SIEM correlation rules that chain multiple signals into actionable alerts.

plus icon minus icon
What is pass-the-hash?

Pass-the-hash (T1550.002) is an attack technique in which captured NTLM password hashes are reused directly to authenticate to other systems — without cracking the hash to recover the plaintext password. Windows NTLM authentication accepts the hash as proof of identity, making captured hashes immediately useful for lateral movement.

plus icon minus icon
How does ransomware use lateral movement?

Ransomware operators move laterally first to map the environment, locate and disable backups, escalate privileges, and spread ransomware payloads to as many systems as possible — then trigger encryption simultaneously. This maximizes damage and eliminates recovery options.

plus icon minus icon
What is MITRE ATT&CK TA0008?

TA0008 is the MITRE ATT&CK tactic identifier for Lateral Movement, covering techniques adversaries use to enter and control remote systems on a network. It includes over a dozen sub-techniques spanning remote service abuse, credential reuse, and internal phishing.

plus icon minus icon
What is east-west traffic in cybersecurity?

East-west traffic refers to communication between hosts within the same network — as opposed to north-south traffic, which crosses the network boundary. Lateral movement occurs in east-west traffic, making internal network visibility a prerequisite for detection.

plus icon minus icon
What is the difference between lateral movement and privilege escalation?

Lateral movement spreads access horizontally across multiple systems. Privilege escalation increases access permissions vertically on a single system. Attackers typically alternate between both: move to a new system, escalate privileges on it, use those privileges to move further.

plus icon minus icon
How can organizations prevent lateral movement?

The most effective prevention layers: network segmentation to limit blast radius, least privilege access to minimize what stolen credentials can reach, MFA to raise the cost of credential theft, PAM to control and monitor privileged account usage, and Zero Trust architecture to eliminate the assumption that internal traffic is safe.

Securden Help Assistant
What's next?
Request a Demo Get a Price Quote

Thanks for sharing your details.
We will be in touch with you shortly

Thanks for sharing your details.
We will be in touch with you shortly