Inside the Blind Spot: Mapping the Detection Gaps Attackers Use to Move Freely Through Your Network
Photo: network security monitoring internal traffic analysis data center, via upload.wikimedia.org
Initial access gets most of the attention. Endpoint detection tools, email security gateways, and perimeter controls are layered specifically to prevent the first foothold. But in a substantial number of confirmed intrusions, the initial access phase is not where the damage occurs. The damage occurs afterward — during the hours, days, or weeks an attacker spends moving through the internal environment while detection systems remain silent.
Lateral movement is the phase where intrusions become breaches. It is also the phase where monitoring coverage is most frequently incomplete, even in organizations that consider their security posture mature. Understanding why requires a precise look at the specific techniques attackers use and the equally specific reasons those techniques evade detection.
Why Internal Monitoring Lags Behind Perimeter Monitoring
The asymmetry in detection capability between perimeter and internal environments is not accidental. Organizations have spent decades and significant budget hardening their external-facing infrastructure. Internal network monitoring received comparatively little investment under the historical assumption that traffic inside the perimeter was inherently trustworthy.
Zero trust architecture has begun to challenge that assumption at the conceptual level, but the operational reality in most US enterprise environments is that east-west traffic monitoring remains sparse, inconsistently deployed, and poorly tuned. Network detection and response (NDR) tools, where they exist, are often scoped to high-bandwidth backbone segments and miss the workstation-to-workstation communication paths that lateral movement frequently exploits.
Technique Mapping: Where Detection Consistently Fails
Pass-the-Hash and Pass-the-Ticket
Credential relay techniques — particularly pass-the-hash and Kerberos ticket manipulation — remain among the most effective lateral movement methods precisely because they abuse legitimate authentication protocols. From a network logging perspective, the authentication events they generate are structurally identical to normal user logins. Detection depends entirely on behavioral context: is this account authenticating to this host at this time in a pattern consistent with its historical baseline?
Most SIEM deployments lack the baseline fidelity to answer that question reliably. Authentication logs are ingested, but the contextual enrichment required to distinguish a legitimate remote desktop session from a relay attack is often absent. The result is that these techniques pass through environments generating only the noise of normal-looking authentication events.
Living-off-the-Land Binaries (LOLBins)
Attackers who use native Windows utilities — PowerShell, WMI, PsExec, certutil, mshta — to execute lateral movement are exploiting a fundamental detection challenge: the tools themselves are legitimate, and their presence on a system generates no inherent alert. Detection requires process telemetry, command-line argument logging, and parent-child process relationship analysis at a level of granularity that many endpoint deployments do not capture or forward to the SIEM.
Even organizations with mature EDR deployments frequently find that their alert tuning has suppressed LOLBin-related detections to reduce false positive volume — inadvertently creating the blind spot attackers rely on.
SMB Lateral Movement and Admin Share Abuse
SMB-based movement using administrative shares (C$, ADMIN$, IPC$) is decades old and remains effective in modern environments. Detection requires monitoring SMB traffic at the host level, correlating successful connections to administrative shares with the account performing the connection, and flagging instances where that account does not routinely access those shares.
In practice, this correlation is frequently missing. SMB traffic is high-volume and noisy in Windows environments, and teams that have tuned down SMB-related alerts to manage volume have often tuned out the signal along with the noise.
Kerberoasting and AS-REP Roasting
These Active Directory attack techniques involve requesting service tickets for accounts with Service Principal Names (SPNs) or exploiting accounts without pre-authentication required — both actions that generate specific, detectable event IDs in Windows Security logs (4769 and 4768 respectively). The detection is well-documented. The failure is in implementation.
Many organizations do not forward the relevant Windows Security event IDs to their SIEM, either because the log volume was deemed excessive during initial configuration or because the forwarding rules were never updated when the detection use case was identified. The telemetry exists on the domain controller; it simply never reaches the detection layer.
DCOM and WMI Remote Execution
Distributed Component Object Model (DCOM) and Windows Management Instrumentation (WMI) provide remote execution capabilities that are native to Windows and used extensively by legitimate system management tools. Attackers exploit this legitimacy. Detection requires correlating WMI subscription creation events, DCOM activation requests, and the resulting process execution chains — a multi-source correlation that most detection rule libraries do not implement by default.
The Visibility Audit: A Practitioner's Checklist
The following checklist is designed for security practitioners conducting an internal review of their lateral movement detection coverage. Each item represents a specific monitoring capability gap commonly identified during red team engagements.
Authentication and Credential Telemetry
- Are Windows Security event IDs 4624, 4625, 4648, 4768, 4769, and 4771 being forwarded from all domain controllers to your SIEM?
- Do you have behavioral baselines for account authentication patterns that would surface anomalous logon times, source hosts, or logon types?
- Are NTLM authentication events being logged and analyzed, particularly in environments where NTLM should be restricted?
East-West Network Visibility
- Do you have network flow data (NetFlow, IPFIX, or equivalent) covering workstation-to-workstation traffic segments, not just perimeter and backbone links?
- Is SMB traffic between workstations being logged at a level that would reveal administrative share access?
- Are you capturing DNS queries at the internal resolver level to detect internal reconnaissance activity?
Endpoint and Process Telemetry
- Is command-line argument logging enabled for PowerShell and cmd.exe across your endpoint fleet?
- Are parent-child process relationships being captured and forwarded for analysis?
- Is WMI activity logging (Microsoft-Windows-WMI-Activity/Operational) enabled and collected?
Active Directory Monitoring
- Are you monitoring for bulk SPN enumeration requests that would indicate Kerberoasting activity?
- Do you have alerting on new DCOM application registrations or WMI permanent subscriptions?
- Are privileged group membership changes generating alerts with appropriate context?
Detection Rule Validation
- When did you last validate that your lateral movement detection rules fire against simulated techniques in a controlled exercise?
- Are your alert suppression rules documented and reviewed periodically to ensure they have not created coverage gaps?
Closing the Gaps: Prioritization Framework
Not every gap can be closed simultaneously. Prioritization should follow a risk-based logic: address the detection gaps that correspond to techniques most commonly used by threat actors targeting your industry vertical, then move to broader coverage improvements.
MITRE ATT&CK provides a useful starting point for this mapping. Overlay your confirmed detection gaps against the techniques documented for threat groups relevant to your sector. The intersection of "technique commonly used against organizations like yours" and "technique you currently cannot detect" defines your highest-priority remediation targets.
For most US enterprise environments, that intersection will include at minimum: credential relay techniques, LOLBin-based execution, and Kerberos ticket abuse. Addressing those three categories alone will meaningfully reduce the window of undetected lateral movement in the majority of intrusion scenarios.
The internal network has been the attacker's playground for too long. The telemetry to close these gaps exists in most environments — the work is ensuring it reaches the detection layer and that the detection layer is configured to act on it.