用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-azure-storage-5-1-5命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-azure-storage-5.1.5 |
| description | Ensure 'Cross Region Restore' is set to 'Enabled' on Backup vaults |
| category | cis-azure-storage |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","storage","backup","backup-vaults","cross-region-restore","disaster-recovery"] |
| cis_id | 5.1.5 |
| cis_benchmark | CIS Microsoft Azure Storage Services Benchmark v1.0.0 |
| tech_stack | ["azure"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Cross region restore enables data restoration in a secondary Azure paired region, even when the primary region is fully operational. This allows organizations to conduct drills and validate regional resiliency, thereby ensuring preparedness for potential outages.
Enabling cross region restore facilitates proactive resilience testing and disaster recovery planning by allowing data restoration drills in a secondary region without needing a primary region outage. This capability helps organizations validate recovery processes, identify gaps in regional failover, and ensures critical data can be accessed and restored during real disruptions.
Enabling cross region restore on a Backup vault incurs additional costs, and once it is enabled, it cannot be disabled.
Backup vaults.Manage, click Properties.Vault Settings, ensure that Cross Region Restore is set to Enabled.Run the following command to list Backup vaults:
az dataprotection backup-vault list
For each Backup vault, run the following command:
az dataprotection backup-vault show --resource-group <resource-group> --vault-name <backup-vault>
Ensure that under properties > featureSettings > crossRegionRestoreSettings, state is set to Enabled.
Run the following command to list Backup vaults:
Get-AzDataProtectionBackupVault
Run the following command to get the Backup vault in a resource group with a given name:
$vault = Get-AzDataProtectionBackupVault -ResourceGroupName <resource-group> -VaultName <backup-vault>
Run the following command to get the cross region restore setting for the Backup vault:
$vault.CrossRegionRestoreState
Ensure that the command returns Enabled.
Repeat for each Backup vault.
Cross Region Restore should be Enabled in the Azure Portal, or properties.featureSettings.crossRegionRestoreSettings.state should be Enabled in CLI output, or $vault.CrossRegionRestoreState should return Enabled in PowerShell.
Backup vaults.Manage, click Properties.Vault Settings, next to Cross Region Restore, click Update.Cross Region Restore to set it to Enable.Apply.For each Backup vault requiring remediation, run the following command to enable cross region restore:
az dataprotection backup-vault update --resource-group <resource-group> --vault-name <backup-vault> --cross-region-restore-state Enabled
For each Backup vault requiring remediation, run the following command to enable cross region restore:
Update-AzDataProtectionBackupVault -ResourceGroupName <resource-group> -VaultName <backup-vault> -CrossRegionRestoreState Enabled
Cross region restore is disabled by default on Backup vaults.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 11.1 Establish and Maintain a Data Recovery Process | X | X | X |
| v7 | 10.4 Ensure Protection of Backups | X | X | X |
Level 2 | Automated