Living Off the Land: Mapping the Quiet Techniques Attackers Use After Initial Access
After the Breach: Where Detection Usually Fails
Defensive investment in the US enterprise market has historically concentrated at the perimeter. Firewalls, email gateways, endpoint detection at the point of initial compromise—these controls receive the most attention, the most budget, and the most tuning. The implicit assumption is that stopping initial access is the primary objective, and that if something gets through, the subsequent activity will be detectable.
That assumption is increasingly dangerous. Skilled attackers have adapted to perimeter-heavy defenses by making their post-access behavior as unremarkable as possible. Rather than deploying noisy malware or running obvious reconnaissance commands, they use tools and protocols that are already present in the environment, move at a pace that mirrors normal user activity, and generate log entries that blend seamlessly into the baseline. From the perspective of a SOC analyst reviewing alerts at 2:00 AM, these intrusions can be invisible for days or weeks.
Understanding how this works—at a technical level—is essential for any security professional building or auditing detection capabilities. What follows is an examination of the quieter lateral movement techniques that appear most frequently in post-incident investigations, paired with the specific detection gaps that allow them to persist.
Technique 1: Pass-the-Hash and Token Manipulation
Credential-based lateral movement remains one of the most reliable attacker techniques precisely because it does not require the deployment of additional tooling. Using a captured NTLM hash or a Kerberos ticket, an attacker can authenticate to remote systems as a legitimate user. The authentication event itself is logged, but it looks identical to a normal login—because, from the authentication system's perspective, it is one.
What distinguishes malicious use from legitimate use is context: the source host, the time of day, the systems being accessed, and the sequence of authentications. A user account that authenticates to a file server from their workstation during business hours is normal. The same account authenticating to a domain controller from an unfamiliar host at 3:00 AM is not.
Detection gap: Most organizations log authentication events but do not baseline normal authentication patterns per account. Without a behavioral baseline, the anomalous authentication generates no alert.
Detection recommendation: Enable and forward Windows Security Event ID 4624 (successful logon) and 4648 (logon using explicit credentials) to your SIEM. Build detection logic that flags authentication events from source hosts that are not in the account's historical baseline. Pair this with monitoring for Kerberos ticket requests (Event ID 4768, 4769) that occur outside normal working hours for the account in question.
Technique 2: WMI and PowerShell Remoting
Windows Management Instrumentation and PowerShell Remoting are legitimate administrative tools present in virtually every Windows environment. They are also two of the most commonly abused mechanisms for lateral movement and remote execution. Because these tools are expected to generate network traffic and process execution events, their use blends naturally into the background noise of a managed enterprise.
Attackers using WMI for lateral movement typically spawn processes on remote systems without creating a new service or dropping a file to disk—both of which are more likely to trigger endpoint detection. PowerShell Remoting over WinRM similarly allows command execution that can be made to appear routine if the attacker controls the content of their commands carefully.
Detection gap: Many organizations have WMI and PowerShell logging either disabled or configured at a level that captures process creation but not command-line arguments or script block content.
Detection recommendation: Enable PowerShell Script Block Logging (via Group Policy under Windows PowerShell) and ensure these logs are forwarded to your SIEM. For WMI, monitor Windows Event ID 4688 with command-line auditing enabled, and specifically alert on WMI activity originating from non-administrative hosts or accounts. Network-level detection of WinRM traffic (port 5985/5986) from unexpected source hosts is a valuable secondary signal.
Technique 3: Abusing Legitimate Admin Tools and Scheduled Tasks
PsExec, Remote Desktop Protocol, and Windows Task Scheduler are all present in legitimate administrative workflows. Attackers rely on this legitimacy to mask their movement. A scheduled task created on a remote host to execute a payload looks, in the event log, nearly identical to one created by an IT administrator for routine maintenance.
The distinguishing characteristics are subtle: the account that created the task, the command being executed, the creation time, and whether the task name follows any established naming convention. None of these attributes are checked automatically by default logging configurations.
Detection gap: Task Scheduler events are often not forwarded to SIEM at all. When they are, alert rules typically focus only on task execution rather than task creation.
Detection recommendation: Forward Windows Event ID 4698 (scheduled task created) and 4702 (scheduled task updated) to your SIEM. Build detection logic that flags task creation by accounts that do not normally create scheduled tasks, or task creation on hosts that are not in the account's normal administrative scope. For RDP, monitor Event ID 4624 with logon type 10 (remote interactive) and alert on RDP sessions initiated from workstations rather than jump servers.
Technique 4: DNS and LDAP Reconnaissance
Before an attacker moves laterally, they typically need to understand the network—which hosts exist, which services are running, and where privileged accounts authenticate. The quietest reconnaissance techniques use protocols that generate high volumes of legitimate traffic: DNS queries and LDAP searches.
A single workstation issuing an unusually high volume of DNS queries for internal hostnames, or executing broad LDAP queries against Active Directory, may indicate an attacker mapping the environment. But because DNS and LDAP traffic is expected and voluminous, these signals are rarely monitored at the query level.
Detection gap: DNS query logging is frequently disabled on internal resolvers, and LDAP query auditing is not enabled by default on domain controllers.
Detection recommendation: Enable DNS debug logging on internal resolvers and forward query logs to your SIEM. Alert on workstations (as opposed to servers or domain controllers) that issue more than a threshold number of unique internal DNS queries within a short window. For LDAP, enable Directory Service Access auditing on domain controllers (Event ID 4662) and alert on LDAP queries that enumerate sensitive AD objects—particularly those requesting attributes associated with password hashes or privileged group membership.
Building a Detection Program That Looks Inward
The techniques described above share a common characteristic: they exploit the assumption that internal traffic is trusted. Perimeter-focused detection programs are structurally blind to them because the signals they generate are internal, low-volume, and contextually ambiguous without behavioral baselines.
For security teams working to close these gaps, the priority sequence is straightforward. First, audit your current logging configuration against the specific event IDs listed above. Many organizations will find significant gaps. Second, build behavioral baselines for accounts and hosts that are used as reference points for anomaly detection. Third, develop detection rules that incorporate context—not just what happened, but who did it, from where, and at what time relative to their historical pattern.
Lateral movement is not invisible. It leaves traces. The question is whether your logging configuration and detection logic are positioned to see them.