Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

configuring-microsegmentation-for-zero-trust配置微分段以实现零信任

Agent Skill

configuring-microsegmentation-for-zero-trust 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

269

周安装

11

GitHub Stars

5,894

下载量

86
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:configuring-microsegmentation-for-zero-trust(配置微分段以实现零信任)
来源仓库:https://github.com/mukul975/anthropic-cybersecurity-skills
仓库路径:skills/configuring-microsegmentation-for-zero-trust
安装命令:
npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill configuring-microsegmentation-for-zero-trust
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill configuring-microsegmentation-for-zero-trust

简介

用于查找、检索和筛选与零信任微分段配置相关的信息。

  • 适合在需要根据关键词或场景快速定位候选结果时使用。
  • 可结合来源仓库进一步核验具体用法和适用条件。configuring-microsegmentation-for-zero-trust 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前建议确认权限范围及是否触发联网或命令执行。
  • 当前暂无已知稳定性问题,但需人工复核具体实现细节。

SKILL.md

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

  1. 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)

  1. 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

  1. 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

  1. 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

  1. Model Policies in Test Mode

- Enable policies in visibility/test mode (do not enforce) - Monitor for would-be blocked legitimate traffic - Refine policies based on test results over 1-2 weeks - Get application owner sign-off before enforcement

Phase 3: Enforcement

  1. Enforce Incrementally

- Start with the most isolated, lowest-risk application - Switch policy from test mode to enforce mode - Monitor for application issues in the first 24-48 hours - Proceed to next application after validation

  1. Validate Segmentation

- Run penetration tests attempting lateral movement between segments - Verify that blocked traffic generates alerts in the management console - Test emergency override procedures (break-glass) - Document enforcement status for each application zone

Phase 4: Operational Maintenance

  1. Ongoing Policy Management

- Integrate with CI/CD: auto-label new workloads from deployment pipelines - Review policy violations weekly and investigate anomalies - Update policies when applications change or new services deploy - Perform quarterly segmentation effectiveness reviews

Validation Checklist

  • Agents deployed on all in-scope workloads
  • Application dependency map reviewed and approved by app owners
  • Labels assigned and validated against CMDB
  • Policies modeled in test mode with no false positives for 2+ weeks
  • Policies enforced incrementally with monitoring
  • Default-deny active for all segmented zones
  • Lateral movement tests confirm blocked unauthorized traffic
  • Alerting configured for policy violations
  • Break-glass procedure documented and tested
  • Compliance auditor sign-off for regulated environments

References

  • NIST SP 800-207: Zero Trust Architecture
  • CISA Zero Trust Maturity Model v2.0 - Network Pillar
  • Illumio Core Administration Guide
  • VMware NSX Distributed Firewall Configuration Guide
  • Forrester Zero Trust eXtended (ZTX) Framework

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.63%
按下载量换算32

Claude

28.24%
按下载量换算24

Cursor

18.95%
按下载量换算16

Gemini CLI

9.1%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills