用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-azure-foundations-7-16命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
macOS post-exploitation for credential harvesting, DTrace monitoring, TCC bypass, and stealth operations via native tools
Windows userland post-exploitation for credential harvesting, monitoring, AMSI/ETW bypass, and stealth operations
Kubernetes post-exploitation for container escape, secret extraction, RBAC abuse, and cluster persistence
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-azure-foundations-7.16 |
| description | Ensure Azure Network Security Perimeter is used to secure Azure PaaS resources |
| category | cis-azure-foundations |
| version | 5.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","networking","nsg"] |
| cis_id | 7.16 |
| cis_benchmark | CIS Microsoft Azure Foundations Benchmark v5.0.0 |
| tech_stack | ["azure"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Azure Network Security Perimeter creates a logical boundary around Azure platform-as-a-service (PaaS) resources outside of virtual networks. By default, the network security perimeter denies public access to associated PaaS resources, with the ability to define explicit rules for inbound and outbound traffic.
While an automated assessment procedure exists for this recommendation, the assessment status remains manual. Determining appropriate network security perimeter profiles and resource assignments depends on the context and requirements of each organization and environment.
Network security perimeter denies public access to PaaS resources, reducing exposure and mitigating data exfiltration risks.
Implementation requires administrative effort to configure and maintain network security perimeter profiles and resource assignments. Azure does not list any additional charges for using network security perimeters.
Resource groups.Network Security Perimeters.Settings, click Associated resources.Run the following command to list resource groups:
az group list
For each resource group, run the following command to list resources:
az resource list --resource-group <resource-group>
Take note of PaaS resources.
For each resource group, run the following command to list network security perimeters:
az network perimeter list --resource-group <resource-group>
For each network security perimeter, run the following command to list resources:
az network perimeter association list --resource-group <resource-group> --perimeter-name <network-security-perimeter>
Ensure each PaaS resource is associated with a network security perimeter.
All PaaS resources should be associated with a network security perimeter. The association list for each perimeter should include all relevant PaaS resources in the environment.
Create and associate PaaS resources with a new network security perimeter:
Network Security Perimeters.+ Create.Subscription and Resource group, provide a Name, select a Region, and provide a Profile name.Next.+ Add.Select.Next.Inbound access rules for your organization.Next.Outbound access rules for your organization.Review + create.Create.Associate PaaS resources with an existing network security perimeter:
Network Security Perimeters.Settings, click Associated resources.+ Add.Associate resources with a new profile or Associate resources with an existing profile.Name.Next.+ Add.Select.Next.Inbound access rules for your organization.Next.Outbound access rules for your organization.Review + create.Create.Profile, click Select to display the drop-down menu.+ Add.Select.Associate.Use az network perimeter profile list or az network perimeter profile create to list existing or create a new network security perimeter profile.
For each PaaS resource requiring association with a network security perimeter, run the following command:
az network perimeter association create --resource-group <resource-group> --perimeter-name <network-security-perimeter> --association-name <association> --private-link-resource "{id:<paas-resource-id>}" --profile "{<profile-id>}"
PaaS resources are not associated with a network security perimeter by default.
Level 2 | Manual