用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-azure-storage-5-2-6命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-azure-storage-5.2.6 |
| description | Ensure 'Cross Region Restore' is set to 'Enabled' on Recovery Services vaults |
| category | cis-azure-storage |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","storage","recovery-services","backup","cross-region-restore","disaster-recovery","geo-redundancy","resilience"] |
| cis_id | 5.2.6 |
| 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 Recovery Services vault incurs additional costs, and once it is enabled, it cannot be disabled.
Recovery Services vaults.Settings, click Properties.Backup Configuration, click Update.Cross Region Restore, ensure the radio button next to Enabled is selected.Run the following command to list Recovery Services vaults:
az backup vault list
For each Recovery Services vault, run the following command:
az backup vault show --resource-group <resource-group> --name <recovery-services-vault>
Ensure that under properties > redundancySettings, crossRegionRestore is set to Enabled.
Run the following command to list Recovery Services vaults:
Get-AzRecoveryServicesVault
Run the following command to get the Recovery Services vault in a resource group with a given name:
$vault = Get-AzRecoveryServicesVault -ResourceGroupName <resource-group> -Name <recovery-services-vault>
Run the following command to get the cross region restore setting for the Recovery Services vault:
$vault.Properties.RedundancySettings.CrossRegionRestore
Ensure that the command returns Enabled.
Repeat for each Recovery Services vault.
properties.redundancySettings.crossRegionRestore is set to EnabledEnabled is selected for Cross Region RestoreEnabled for $vault.Properties.RedundancySettings.CrossRegionRestoreRecovery Services vaults.Settings, click Properties.Backup Configuration, click Update.Cross Region Restore, select the radio button next to Enabled.Apply.For each Recovery Services vault requiring remediation, run the following command to enable cross region restore:
az backup vault update --resource-group <resource-group> --name <recovery-services-vault> --cross-region-restore-flag Enabled
Run the following command to get the Recovery Services vault in a resource group with a given name:
$vault = Get-AzRecoveryServicesVault -ResourceGroupName <resource-group> -Name <recovery-services-vault>
Run the following command to enable cross region restore:
Set-AzRecoveryServicesBackupProperty -Vault $vault -EnableCrossRegionRestore
Repeat for each Recovery Services vault requiring remediation.
Cross region restore is disabled by default on Recovery Services vaults.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 11.1 Establish and Maintain a Data Recovery Process - Establish and maintain a data recovery process. In the process, address the scope of data recovery activities, recovery prioritization, and the security of backup data. Review and update documentation annually, or when significant enterprise changes occur that could impact this Safeguard. | X | X | X |
| v7 | 10.4 Ensure Protection of Backups - Ensure that backups are properly protected via physical security or encryption when they are stored, as well as when they are moved across the network. This includes remote backups and cloud services. | X | X | X |
Level 2 | Automated