Prerequisites
- Target system, dependencies and environment configured.
Usage
Purpose
After the initial foothold, an adversary moves laterally toward their objective — the crown jewels are rarely where they land. Emulating lateral movement tests whether the organisation can detect and constrain an attacker moving through the network, which is often where there's the most opportunity to catch an intrusion. This skill covers the lateral-movement phase of an authorised engagement conceptually, and — the defensive core — how movement is detected and broken. It's the offensive counterpart to the threat-hunting lateral-movement skill.
When to use it
The mid-engagement phase (post-foothold, pre-objective) of an authorised engagement under RoE. The defensive framing is central: lateral movement is detectable and constrainable, and emulating it tests both.
Procedure (authorised)
- Operate within the RoE and maintain deconfliction — lateral movement across production systems needs care and a way to distinguish your activity from a real attack.
- Understand the main movement techniques (conceptual level) — how adversaries move:
- Remote execution — executing on another host via SMB (PsExec-style), WMI, WinRM/PowerShell Remoting, RDP, or scheduled tasks.
- Credential-based movement — using stolen/harvested credentials, pass-the-hash, or pass-the-ticket to authenticate to other systems (ties to the AD credential-dumping skill).
- Exploiting trust relationships — AD delegation, trust relationships, and shared local admin credentials (the AD domain covers these paths).
- Emulate the actor's movement techniques (the emulation-planning skill) — move the way the emulated adversary does, using the plan's scenario.
- Move toward the objective, following the path from foothold toward the target systems (mirroring the BloodHound-style attack paths the AD domain maps).
- Focus on testing detection and constraint — the defensive point. The questions: does the blue team detect the movement (unusual authentication, remote execution — the threat-hunting lateral-movement skill)? and does segmentation/tiering constrain it (can you actually reach the target, or do the AD tiering and network segmentation controls block the path)? Both are findings.
- Understand how movement is detected and broken (the valuable defensive knowledge):
- Detection — anomalous authentication patterns, remote-execution signatures, and credential-use anomalies (the threat-hunting and detection domains).
- Constraint — network segmentation (limits reachability), AD tiered administration (breaks the credential-theft chain), and least privilege (limits what stolen credentials reach).
- Report the movement outcome — "how far movement got, what was detected, and what constrained it" is a critical finding that drives the segmentation, tiering, and detection improvements that break attack paths.
Cheatsheet
after foothold -> move laterally toward the objective (crown jewels rarely where you land)
emulating it tests DETECT + CONSTRAIN of an attacker moving (often best chance to catch an intrusion)
(conceptual ; authorised RoE + deconfliction)
techniques (conceptual)
REMOTE EXECUTION: SMB/PsExec, WMI, WinRM/PS-Remoting, RDP, scheduled tasks
CREDENTIAL-BASED: stolen creds, pass-the-hash/ticket (AD credential-dumping)
TRUST RELATIONSHIPS: AD delegation, trusts, shared local admin (AD domain paths)
emulate the actor's movement -> move toward the objective (BloodHound-style paths)
DEFENSIVE POINT: test DETECTION + CONSTRAINT
detect: anomalous auth, remote-exec signatures, credential-use anomalies [threat-hunting lateral-movement]
constrain: network segmentation (reachability) | AD TIERING (breaks credential-theft chain) | least privilege
report: how far it got + what detected + what constrained -> drives segmentation/tiering/detection
Reading the phase
- Lateral movement reaching the objective undetected and unconstrained = a serious finding on both axes; the blue team didn't catch the movement and the architecture didn't limit it. Drives both detection and segmentation/tiering improvements.
- Movement detected via anomalous authentication or remote execution = a defensive win; the blue team caught the attacker moving, which is often the best chance to catch an intrusion mid-flight (the threat-hunting lateral-movement skill).
- Movement constrained by segmentation or AD tiering (can't reach the target, or the credential-theft chain is broken) = the architecture doing its job; the path is blocked by design. A strong defensive outcome — note what constrained it.
- Movement succeeding because of a flat network or shared local admin = the architectural gaps that make movement easy; segmentation and unique local admin (LAPS) are the fixes.
- Credential-based movement (pass-the-hash) reaching privileged systems = the credential-theft chain working for the attacker; AD tiering is what breaks it.
- How far movement got, detected, and constrained = the critical finding; the phase's value is testing and improving the organisation's ability to detect and break attack paths.
Pitfalls
- Operating outside RoE / without deconfliction. Lateral movement across production looks like a real attack and touches many systems; stay in scope with a deconfliction path.
- Focusing on reaching the objective over the defensive outcome. The value is whether movement is detected and constrained; both are the findings, not just whether you got there.
- Testing only detection, not constraint (or vice versa). Lateral movement tests both the blue team's detection and the architecture's segmentation/tiering; assess both.
- Not emulating the actor's techniques. Move the way the emulated adversary does, per the plan, to test realistic detection.
- Providing operational tooling. Conceptual by design; the value is understanding movement and its detection/constraint, not ready-to-fire lateral-movement tools.
References
- MITRE ATT&CK — TA0008 (Lateral Movement), T1021, T1550
- The threat-hunting lateral-movement-hunting skill and the Active Directory domain (ntlm-relay, dcsync, tiered-admin-model, the paths)
- The network-segmentation skill and scoping/emulation-planning skills
- BloodHound (attack-path mapping — both sides use it)
Inputs
- Relevant source code, logs, network traces, or system specifications.
Outputs
- Analysis findings, security audit report, or generated code artifacts.
1---2name: lateral-movement3description: Use when emulating lateral movement in an authorised engagement — how adversaries move between systems toward their objective, and how the blue team detects and constrains it.4---5678## Prerequisites9- Target system, dependencies and environment configured.1011## Usage12### Purpose1314After the initial foothold, an adversary moves laterally toward their objective — the crown jewels are rarely where they land. Emulating lateral movement tests whether the organisation can detect and constrain an attacker moving through the network, which is often where there's the most opportunity to catch an intrusion. This skill covers the lateral-movement phase of an authorised engagement conceptually, and — the defensive core — how movement is detected and broken. It's the offensive counterpart to the threat-hunting lateral-movement skill.1516### When to use it1718The mid-engagement phase (post-foothold, pre-objective) of an authorised engagement under RoE. The defensive framing is central: lateral movement is detectable and constrainable, and emulating it tests both.1920### Procedure (authorised)21221. **Operate within the RoE** and maintain deconfliction — lateral movement across production systems needs care and a way to distinguish your activity from a real attack.232. **Understand the main movement techniques** (conceptual level) — how adversaries move:24 - **Remote execution** — executing on another host via SMB (PsExec-style), WMI, WinRM/PowerShell Remoting, RDP, or scheduled tasks.25 - **Credential-based movement** — using stolen/harvested credentials, pass-the-hash, or pass-the-ticket to authenticate to other systems (ties to the AD credential-dumping skill).26 - **Exploiting trust relationships** — AD delegation, trust relationships, and shared local admin credentials (the AD domain covers these paths).273. **Emulate the actor's movement techniques** (the emulation-planning skill) — move the way the emulated adversary does, using the plan's scenario.284. **Move toward the objective**, following the path from foothold toward the target systems (mirroring the BloodHound-style attack paths the AD domain maps).295. **Focus on testing detection and constraint — the defensive point.** The questions: does the blue team detect the movement (unusual authentication, remote execution — the threat-hunting lateral-movement skill)? and does segmentation/tiering constrain it (can you actually reach the target, or do the AD tiering and network segmentation controls block the path)? Both are findings.306. **Understand how movement is detected and broken** (the valuable defensive knowledge):31 - **Detection** — anomalous authentication patterns, remote-execution signatures, and credential-use anomalies (the threat-hunting and detection domains).32 - **Constraint** — network segmentation (limits reachability), AD tiered administration (breaks the credential-theft chain), and least privilege (limits what stolen credentials reach).337. **Report the movement outcome** — "how far movement got, what was detected, and what constrained it" is a critical finding that drives the segmentation, tiering, and detection improvements that break attack paths.3435### Cheatsheet3637```38after foothold -> move laterally toward the objective (crown jewels rarely where you land)39 emulating it tests DETECT + CONSTRAIN of an attacker moving (often best chance to catch an intrusion)40 (conceptual ; authorised RoE + deconfliction)4142techniques (conceptual)43 REMOTE EXECUTION: SMB/PsExec, WMI, WinRM/PS-Remoting, RDP, scheduled tasks44 CREDENTIAL-BASED: stolen creds, pass-the-hash/ticket (AD credential-dumping)45 TRUST RELATIONSHIPS: AD delegation, trusts, shared local admin (AD domain paths)4647emulate the actor's movement -> move toward the objective (BloodHound-style paths)4849DEFENSIVE POINT: test DETECTION + CONSTRAINT50 detect: anomalous auth, remote-exec signatures, credential-use anomalies [threat-hunting lateral-movement]51 constrain: network segmentation (reachability) | AD TIERING (breaks credential-theft chain) | least privilege52report: how far it got + what detected + what constrained -> drives segmentation/tiering/detection53```5455### Reading the phase5657- **Lateral movement reaching the objective undetected and unconstrained** = a serious finding on both axes; the blue team didn't catch the movement and the architecture didn't limit it. Drives both detection and segmentation/tiering improvements.58- **Movement detected via anomalous authentication or remote execution** = a defensive win; the blue team caught the attacker moving, which is often the best chance to catch an intrusion mid-flight (the threat-hunting lateral-movement skill).59- **Movement constrained by segmentation or AD tiering** (can't reach the target, or the credential-theft chain is broken) = the architecture doing its job; the path is blocked by design. A strong defensive outcome — note what constrained it.60- **Movement succeeding because of a flat network or shared local admin** = the architectural gaps that make movement easy; segmentation and unique local admin (LAPS) are the fixes.61- **Credential-based movement (pass-the-hash) reaching privileged systems** = the credential-theft chain working for the attacker; AD tiering is what breaks it.62- **How far movement got, detected, and constrained** = the critical finding; the phase's value is testing and improving the organisation's ability to detect and break attack paths.6364### Pitfalls6566- **Operating outside RoE / without deconfliction.** Lateral movement across production looks like a real attack and touches many systems; stay in scope with a deconfliction path.67- **Focusing on reaching the objective over the defensive outcome.** The value is whether movement is detected and constrained; both are the findings, not just whether you got there.68- **Testing only detection, not constraint (or vice versa).** Lateral movement tests both the blue team's detection *and* the architecture's segmentation/tiering; assess both.69- **Not emulating the actor's techniques.** Move the way the emulated adversary does, per the plan, to test realistic detection.70- **Providing operational tooling.** Conceptual by design; the value is understanding movement and its detection/constraint, not ready-to-fire lateral-movement tools.7172### References7374- MITRE ATT&CK — TA0008 (Lateral Movement), T1021, T155075- The threat-hunting lateral-movement-hunting skill and the Active Directory domain (ntlm-relay, dcsync, tiered-admin-model, the paths)76- The network-segmentation skill and scoping/emulation-planning skills77- BloodHound (attack-path mapping — both sides use it)7879## Inputs80- Relevant source code, logs, network traces, or system specifications.8182## Outputs83- Analysis findings, security audit report, or generated code artifacts.