Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-storage-1-2명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cis-aws-storage-1.2 |
| description | Ensure securing AWS Backups |
| category | cis-storage-services |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","storage","backup","aws-backup","security","disaster-recovery","iam"] |
| cis_id | 1.2 |
| cis_benchmark | CIS AWS Storage Services Benchmark v1.0.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-storage-1.1","cis-aws-storage-1.3","cis-aws-storage-1.4","cis-aws-storage-1.5"] |
| prerequisites | ["cis-aws-storage-1.1"] |
| severity_boost | {} |
As an AWS administrator, it's important to know what you're responsible for. You're responsible for keeping things safe in the cloud, which means taking care of the resources and data on AWS. Here's what you need to secure, according to AWS documentation:
AWS will send periodic emails regarding the status of your backups and any service issues. The administrator must address any communicated issues from AWS, such as billing problems or backup inactivity, and take necessary steps to resolve them.
Failure to secure AWS Backups properly can result in:
CREATING AN AWS BACKUP:
Creating an AWS Backup involves selecting the desired data, specifying backup frequency, and choosing storage options. Below we'll walk through how to create and configure an AWS Backup instance.
Sign into AWS Console
https://console.aws.amazon.com/billing/home#/, users navigate to the AWS Management Console website and enter their credentials, including their username and passwordAccess the AWS Backup Service Dashboard in the AWS Management Console
Create Backup Plan
aws backup list-backup-plans
aws backup get-backup-plan --backup-plan-id <PLAN_ID>
aws backup list-backup-vaults
aws backup get-backup-vault-access-policy --backup-vault-name <VAULT_NAME>
Configure Backup Plans
Secure Access Credentials
Test Backup Recovery
Integrate with Disaster Recovery
User Training
# Create backup vault with encryption
aws backup create-backup-vault \
--backup-vault-name secure-vault \
--encryption-key-arn arn:aws:kms:region:account:key/key-id
# Set backup vault access policy (restrict access)
aws backup put-backup-vault-access-policy \
--backup-vault-name secure-vault \
--policy file://vault-policy.json
AWS Backup has no default security configurations. All security measures must be explicitly configured by the administrator.
Not mapped to specific CIS Controls v7 or v8 in the provided documentation.