用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-storage-1-1命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-aws-storage-1.1 |
| description | AWS Storage Backups |
| category | cis-storage-services |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","storage","backup","aws-backup","disaster-recovery","resilience"] |
| cis_id | 1.1 |
| cis_benchmark | CIS AWS Storage Services Benchmark v1.0.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-storage-1.2","cis-aws-storage-1.3","cis-aws-storage-1.4","cis-aws-storage-1.5","cis-aws-storage-1.6"] |
| prerequisites | [] |
| severity_boost | {} |
AWS Storage Backups is a managed AWS Service that establishes high resiliency to your cloud resources. AWS Storage Backups are like making extra copies of your important stuff on Amazon's computers. It is an excellent strategy to ensure that the data and resources you use remain available in the event of unrecoverable damage or loss to your resources.
AWS Backups enable you to back up and restore all data lost during the attack. While AWS Storage Backups provide a level of security, there are numerous methods to fortify your backups, ensuring the protection of your data and services.
Not implementing AWS Backups can lead to:
This control requires manual verification of:
Check if AWS Backup is being used in your account:
# List backup plans
aws backup list-backup-plans
# List backup vaults
aws backup list-backup-vaults
# List protected resources
aws backup list-protected-resources
Sign into AWS Console
https://console.aws.amazon.com/billing/home#/Access AWS Backup Service
Create Backup Plan
# Create a backup vault
aws backup create-backup-vault \
--backup-vault-name my-backup-vault
# Create a backup plan from a template
aws backup create-backup-plan \
--backup-plan '{"BackupPlanName":"MyBackupPlan","Rules":[{"RuleName":"DailyBackups","TargetBackupVaultName":"my-backup-vault","ScheduleExpression":"cron(0 5 ? * * *)","StartWindowMinutes":60,"CompletionWindowMinutes":120,"Lifecycle":{"DeleteAfterDays":30}}]}'
AWS Backup is not enabled by default. Organizations must manually configure backup plans, vaults, and resource assignments.
Not mapped to specific CIS Controls v7 or v8 in the provided documentation.