用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-azure-storage-17-4命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-azure-storage-17.4 |
| description | Ensure that 'Secure transfer required' is set to 'Enabled' |
| category | cis-azure-storage |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","storage","storage-accounts","encryption","tls"] |
| cis_id | 17.4 |
| cis_benchmark | CIS Microsoft Azure Storage Services Benchmark v1.0.0 |
| tech_stack |
| ["azure"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Enable data encryption in transit.
The secure transfer option enhances the security of a storage account by only allowing requests to the storage account by a secure connection. For example, when calling REST APIs to access storage accounts, the connection must use HTTPS. Any requests using HTTP will be rejected when 'secure transfer required' is enabled. When using the Azure files service, connection without encryption will fail, including scenarios using SMB 2.1, SMB 3.0 without encryption, and some flavors of the Linux SMB client. Because Azure storage doesn't support HTTPS for custom domain names, this option is not applied when using a custom domain name.
No specific impact noted. This is a standard security best practice.
Storage Accounts.Settings, click Configuration.Secure transfer required is set to Enabled.Use the below command to ensure the Secure transfer required is enabled for all the Storage Accounts by ensuring the output contains true for each of the Storage Accounts.
az storage account list --query "[*].[name,enableHttpsTrafficOnly]"
Policy ID: 404c3081-a854-4457-ae30-26a93ef643f9 - Name: 'Secure transfer to storage accounts should be enabled'
The Secure transfer required setting should be Enabled for all storage accounts. The CLI output should show true for enableHttpsTrafficOnly for each storage account.
Storage Accounts.Settings, click Configuration.Secure transfer required to Enabled.Save.Use the below command to enable Secure transfer required for a Storage Account:
az storage account update --name <storageAccountName> --resource-group <resourceGroupName> --https-only true
By default, Secure transfer required is set to Disabled.
Level 1 | Automated