用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-azure-database-3-6命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-database-3.6 |
| description | Ensure the firewall does not allow all network traffic |
| category | cis-azure-database |
| version | 2.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","cosmos-db","nosql"] |
| cis_id | 3.6 |
| cis_benchmark | CIS Microsoft Azure Database Services Benchmark v2.0.0 |
| tech_stack | ["azure"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Do not allow all network traffic. Restrict access to specific IP addresses or ranges.
Allowing all network traffic limits the effectiveness of a firewall.
Administrative effort to identify and maintain the list of IP addresses and ranges requiring access to the account.
Azure Cosmos DB.Public access, if Public network access is set to Selected networks, ensure 0.0.0.0 is not listed under Firewall > IPs.Run the following command to list Azure Cosmos DB accounts:
az cosmosdb list
For each account, run the following command to get the list of allowed IP addresses:
az cosmosdb show --resource-group <resource-group> --name <cosmos-db> --query ipRules
Ensure that the response does not contain "0.0.0.0".
Run the following command to get Azure Cosmos DB accounts for a given resource group:
Get-AzCosmosDBAccount -ResourceGroupName <resource-group>
Run the following command to get the account with a given name:
$cosmosdb = Get-AzCosmosDBAccount -ResourceGroupName <resource-group> -Name <cosmos-db>
Run the following command to get the list of allowed IP addresses:
$cosmosdb.IpRules
Ensure that the response does not contain 0.0.0.0.
Repeat for each account.
12339a85-a25c-4f17-9f82-4766f13f5c4c - Name: 'Azure Cosmos DB accounts should not allow traffic from all Azure data centers'The IP rules should not contain , which would allow all network traffic.
0.0.0.0Azure Cosmos DB.Public access, Firewall > IPs, select the Delete icon next to 0.0.0.0.For each account requiring remediation, run the following command to update the list of allowed IP addresses, excluding 0.0.0.0:
az cosmosdb update --resource-group <resource-group> --name <cosmos-db-account> --ip-range-filter <comma-separated-list-of-allowed-ip-addresses>
For each account requiring remediation, run the following command to update the list of allowed IP addresses, excluding 0.0.0.0:
Update-AzCosmosDBAccount -ResourceGroupName <resource-group> -Name <cosmos-db-account> -IpRule <comma-separated-list-of-allowed-ip-addresses>
By default, the firewall does not allow all network traffic.
Setting publicNetworkAccess to Disabled takes precedence over Accept connections from within public Azure datacenters.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 4.4 Implement and Manage a Firewall on Servers | X | X | X |
| v7 | 9.4 Apply Host-based Firewalls or Port Filtering | X | X | X |
| Techniques / Sub-techniques | Tactics | Mitigations |
|---|---|---|
| T1530 | TA0009 | M1037 |