/configuring-microsegmentation-for-zero-trust
Configures microsegmentation policies to enforce least-privilege workload-to-workload
$ npx -y skills add mukul975/Anthropic-Cybersecurity-Skills --skill configuring-microsegmentation-for-zero-trust --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/configuring-microsegmentation-for-zero-trust
Context preview
The summary Claude sees to decide when to auto-load this skill.
Configures microsegmentation policies to enforce least-privilege workload-to-workload
SKILL.md
configuring-microsegmentation-for-zero-trust.SKILL.mdname: configuring-microsegmentation-for-zero-trust
description: Configures microsegmentation policies to enforce least-privilege workload-to-workload
access using tools such as VMware NSX, Illumio, and Calico, preventing lateral
movement in zero trust architectures. Use when designing or implementing network
microsegmentation as part of a zero trust architecture aligned with NIST SP 800-207.
domain: cybersecurity
subdomain: zero-trust-architecture
tags:
- zero-trust
- microsegmentation
- network-access
- lateral-movement
- network-security
version: '1.0'
author: mahipal
license: Apache-2.0
nist_csf:
- PR.AA-01
- PR.AA-05
- PR.IR-01
- GV.PO-01
mitre_attack:
- T1021
- T1210
- T1570
- T1046
- T1018
Configuring Microsegmentation for Zero Trust
Prerequisites
- Understanding of zero trust principles (NIST SP 800-207)
- Knowledge of network segmentation concepts
- Familiarity with firewall and SDN technologies
- Experience with VMware NSX, Illumio, Guardicore, or Cisco ACI
Overview
Microsegmentation divides a network into granular security zones, enforcing least-privilege access between workloads at the application layer rather than relying on traditional VLAN-based segmentation. In a zero trust architecture, microsegmentation eliminates implicit trust between workloads within the same network segment, preventing lateral movement even after an attacker gains initial access.
This skill covers designing microsegmentation policies using workload identity, implementing host-based and network-based enforcement, and validating segmentation effectiveness with tools like Illumio Core and VMware NSX.
When to Use
- When deploying or configuring configuring microsegmentation for zero trust capabilities in your environment
- When establishing security controls aligned to compliance requirements
- When building or improving security architecture for this domain
- When conducting security assessments that require this implementation
Prerequisites
- Familiarity with zero trust architecture concepts and tools
- Access to a test or lab environment for safe execution
- Python 3.8+ with required dependencies installed
- Appropriate authorization for any testing activities
Architecture
Microsegmentation Models
1. **Network-Based (VMware NSX, Cisco ACI)**: Distributed firewall rules enforced at the hypervisor or network fabric level 2. **Host-Based (Illumio, Guardicore)**: Agent-based enforcement at the OS level using iptables/WFP rules 3. **Container-Based (Calico, Cilium)**: Network policies enforced at the pod/container level in Kubernetes 4. **Application-Based (Zscaler Workload Segmentation)**: Identity-based segmentation based on software identity rather than IP addresses
Enforcement Points
Traditional Segmentation Microsegmentation
┌─────────────────┐ ┌──────────────────────┐
│ VLAN 10 │ │ Workload A ←policy→ │
│ ┌───┐ ┌───┐ │ │ Workload B ←policy→ │
│ │ A │ │ B │ │ │ Workload C ←policy→ │
│ └───┘ └───┘ │ │ Workload D ←policy→ │
│ (trust each │ │ (zero trust between │
│ other) │ │ every pair) │
└─────────────────┘ └──────────────────────┘
Key Concepts
Application Dependency Mapping
Before creating segmentation policies, discover actual communication flows between workloads using traffic telemetry. Tools like Illumio, Guardicore, and AppDynamics provide application dependency maps showing which workloads communicate, over which ports, and how frequently.
Policy Modeling
Draft policies in monitor/visibility mode before enforcement. This allows validation that proposed rules will not break legitimate traffic while identifying unnecessary or risky communication paths.
Label-Based Policy
Modern microsegmentation uses labels (role, application, environment, location) instead of IP-based rules. Label-based policies are portable across environments and survive IP changes during migrations.
Ring-Fencing
Isolate critical applications (PCI cardholder data environment, SWIFT financial systems, healthcare PHI) with strict allow-list policies that deny all traffic not explicitly permitted.
Workflow
Phase 1: Discovery and Mapping
1. **Deploy Visibility Agents**
- Install lightweight agents on all workloads (servers, VMs, containers)
- Configure agents to report real-time traffic telemetry to the management console
- Allow 2-4 weeks of traffic collection to build a comprehensive flow map
2. **Build Application Dependency Map**
- Review auto-discovered communication flows in the management console
- Identify application tiers: web servers, app servers, databases, middleware
- Map legitimate communication paths and flag unexpected connections
- Document data flows for compliance scope (PCI, HIPAA)
3. **Assign Labels**
- Create a labeling taxonomy: Role (web, app, db), Application (ERP, CRM), Environment (prod, dev, staging), Location (dc1, aws-east)
- Apply labels to all workloads via the management console or API
- Validate label accuracy against CMDB and application owner input
Phase 2: Policy Design
4. **Define Segmentation Zones**
- Environment isolation: Production cannot communicate with Development
- Tier isolation: Database tier only accepts connections from application tier
- Application ring-fencing: PCI applications isolated from non-PCI workloads
- Administrative access: Jump servers are the only management path
5. **Create Allow-List Policies**
- For each application, define explicit allow rules for required communication
- Use label-based rules rather than IP-based where possible
- Include process-level restrictions where supported (e.g., only httpd on port 443)
- Set default-deny for all unlisted communication
6. **Model Policies in Test Mode**
- Enable policies in visibility/test mode (do not enforce)
- Moni
Read more
name: configuring-microsegmentation-for-zero-trust description: Configures microsegmentation policies to enforce least-privilege workload-to-workload access using tools such as VMware NSX, Illumio, and Calico, preventing lateral movement in zero trust architectures. Use when designing or implementing network microsegmentation as part of a zero trust architecture aligned with NIST SP 800-207. domain: cybersecurity subdomain: zero-trust-architecture tags: - zero-trust - microsegmentation - network-access - lateral-movement - network-security version: '1.0' author: mahipal license: Apache-2.0 nist_csf: - PR.AA-01 - PR.AA-05 - PR.IR-01 - GV.PO-01 mitre_attack: - T1021 - T1210 - T1570 - T1046 - T1018
Configuring Microsegmentation for Zero Trust
Prerequisites
- Understanding of zero trust principles (NIST SP 800-207)
- Knowledge of network segmentation concepts
- Familiarity with firewall and SDN technologies
- Experience with VMware NSX, Illumio, Guardicore, or Cisco ACI
Overview
Microsegmentation divides a network into granular security zones, enforcing least-privilege access between workloads at the application layer rather than relying on traditional VLAN-based segmentation. In a zero trust architecture, microsegmentation eliminates implicit trust between workloads within the same network segment, preventing lateral movement even after an attacker gains initial access.
This skill covers designing microsegmentation policies using workload identity, implementing host-based and network-based enforcement, and validating segmentation effectiveness with tools like Illumio Core and VMware NSX.
When to Use
- When deploying or configuring configuring microsegmentation for zero trust capabilities in your environment
- When establishing security controls aligned to compliance requirements
- When building or improving security architecture for this domain
- When conducting security assessments that require this implementation
Prerequisites
- Familiarity with zero trust architecture concepts and tools
- Access to a test or lab environment for safe execution
- Python 3.8+ with required dependencies installed
- Appropriate authorization for any testing activities
Architecture
Microsegmentation Models
1. **Network-Based (VMware NSX, Cisco ACI)**: Distributed firewall rules enforced at the hypervisor or network fabric level 2. **Host-Based (Illumio, Guardicore)**: Agent-based enforcement at the OS level using iptables/WFP rules 3. **Container-Based (Calico, Cilium)**: Network policies enforced at the pod/container level in Kubernetes 4. **Application-Based (Zscaler Workload Segmentation)**: Identity-based segmentation based on software identity rather than IP addresses
Enforcement Points
Traditional Segmentation Microsegmentation ┌─────────────────┐ ┌──────────────────────┐ │ VLAN 10 │ │ Workload A ←policy→ │ │ ┌───┐ ┌───┐ │ │ Workload B ←policy→ │ │ │ A │ │ B │ │ │ Workload C ←policy→ │ │ └───┘ └───┘ │ │ Workload D ←policy→ │ │ (trust each │ │ (zero trust between │ │ other) │ │ every pair) │ └─────────────────┘ └──────────────────────┘
Key Concepts
Application Dependency Mapping
Before creating segmentation policies, discover actual communication flows between workloads using traffic telemetry. Tools like Illumio, Guardicore, and AppDynamics provide application dependency maps showing which workloads communicate, over which ports, and how frequently.
Policy Modeling
Draft policies in monitor/visibility mode before enforcement. This allows validation that proposed rules will not break legitimate traffic while identifying unnecessary or risky communication paths.
Label-Based Policy
Modern microsegmentation uses labels (role, application, environment, location) instead of IP-based rules. Label-based policies are portable across environments and survive IP changes during migrations.
Ring-Fencing
Isolate critical applications (PCI cardholder data environment, SWIFT financial systems, healthcare PHI) with strict allow-list policies that deny all traffic not explicitly permitted.
Workflow
Phase 1: Discovery and Mapping
1. **Deploy Visibility Agents**
- Install lightweight agents on all workloads (servers, VMs, containers)
- Configure agents to report real-time traffic telemetry to the management console
- Allow 2-4 weeks of traffic collection to build a comprehensive flow map
2. **Build Application Dependency Map**
- Review auto-discovered communication flows in the management console
- Identify application tiers: web servers, app servers, databases, middleware
- Map legitimate communication paths and flag unexpected connections
- Document data flows for compliance scope (PCI, HIPAA)
3. **Assign Labels**
- Create a labeling taxonomy: Role (web, app, db), Application (ERP, CRM), Environment (prod, dev, staging), Location (dc1, aws-east)
- Apply labels to all workloads via the management console or API
- Validate label accuracy against CMDB and application owner input
Phase 2: Policy Design
4. **Define Segmentation Zones**
- Environment isolation: Production cannot communicate with Development
- Tier isolation: Database tier only accepts connections from application tier
- Application ring-fencing: PCI applications isolated from non-PCI workloads
- Administrative access: Jump servers are the only management path
5. **Create Allow-List Policies**
- For each application, define explicit allow rules for required communication
- Use label-based rules rather than IP-based where possible
- Include process-level restrictions where supported (e.g., only httpd on port 443)
- Set default-deny for all unlisted communication
6. **Model Policies in Test Mode**
- Enable policies in visibility/test mode (do not enforce)
- Moni
817 structured cybersecurity skills for AI agents · Mapped to 6 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND, NIST AI RMF & MITRE F3 (Fight Fraud) · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platforms · 29 security domains · Apache 2.0
Repo: mukul975/Anthropic-Cybersecurity-Skills
Other skills on cybersecurity-skills.
- /abusing-dpapi-for-credential-access
Extract and decrypt Windows DPAPI-protected secrets (Credential Manager, browser logins/cookies, Wi-Fi credentials, KeePass keys) online or offline using SharpDPAPI, SharpChrome, Mimikatz, or Impacket's dpapi.py, including domain-wide decryption via the DPAPI backup key. Use
Open skill - /abusing-shadow-credentials-for-privesc
Take over Active Directory accounts by writing attacker-controlled public keys to msDS-KeyCredentialLink (Shadow Credentials) with pyWhisker, Whisker, or Certipy, then authenticate via PKINIT to recover the target's NT hash without a password reset. Use when BloodHound shows
Open skill - /achieving-cmmc-level-2-compliance
Prepare a defense-contractor environment for CMMC Level 2 certification: scope CUI and FCI, implement the 110 NIST SP 800-171 Rev 2 security requirements across 14 families, compute the SPRS score with the DoD Assessment Methodology, manage a compliant POA&M, and ready the
Open skill - /acquiring-disk-image-with-dd-and-dcfldd
Create forensically sound bit-for-bit disk images with dd or dcfldd on a Linux forensic workstation, preserving evidence integrity through hash verification (MD5/SHA) during acquisition. Use when imaging a suspect drive, USB device, or memory card for investigation, preserving
Open skill - /analyzing-active-directory-acl-abuse
Detect dangerous ACL misconfigurations in Active Directory using ldap3
Open skill - /analyzing-android-malware-with-apktool
Perform static analysis of Android APK malware using apktool for resource decompilation, jadx for Java source recovery, and androguard for manifest inspection, dangerous permission-combination detection, and identification of obfuscated code, dynamic code loading, and
Open skill

