用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-storage-1-3命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
macOS post-exploitation for credential harvesting, DTrace monitoring, TCC bypass, and stealth operations via native tools
Windows userland post-exploitation for credential harvesting, monitoring, AMSI/ETW bypass, and stealth operations
Kubernetes post-exploitation for container escape, secret extraction, RBAC abuse, and cluster persistence
基于 SOC 职业分类
正在显示 SKILL.md
| name | cis-aws-storage-1.3 |
| description | Ensure to create backup template and name |
| category | cis-storage-services |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","storage","backup","aws-backup","backup-plan","s3","elastic-beanstalk"] |
| cis_id | 1.3 |
| 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.2","cis-aws-storage-1.4"] |
| prerequisites | ["cis-aws-storage-1.1"] |
| severity_boost | {} |
To create a backup plan, select a template and specify a name for the plan. Additionally, define backup rules according to your requirements and then click on create backup option.
Creating well-named backup templates ensures consistency, improves manageability, and helps teams understand backup configurations at a glance. Backup plans define the schedule, retention, and lifecycle policies for your backups.
Not properly creating and naming backup templates can lead to:
Backup Resources:
Once you've made your backup plan, it's time to put it into action and start backing up your stuff.
Let's start by backing up an S3 storage bucket.
To back up Elastic Beanstalk instance stored on AWS S3, we'll need to tag its Amazon Resource Name (ARN) with a backup plan. In S3, go to "properties" to attach the backup plan to the resource:
Copy the ARN from the console
Assign the resource
Select the resource(s) that you want to backup. You have the option to backup all your resources, but we're just going to back up the specific Elastic Beanstalk resource for now.
The resources are now being backed up according to the schedule established by your organization.
# List all backup plans
aws backup list-backup-plans
aws backup get-backup-plan --backup-plan-id <PLAN_ID>
aws backup list-backup-selections --backup-plan-id <PLAN_ID>
aws backup get-backup-selection \
--backup-plan-id <PLAN_ID> \
--selection-id <SELECTION_ID>
Create Backup Plan with Proper Name
prod-daily-30day-retention)Assign Resources
# Create a backup plan with proper naming
aws backup create-backup-plan --backup-plan '{
"BackupPlanName": "prod-s3-daily-backups",
"Rules": [{
"RuleName": "daily-backup-rule",
"TargetBackupVaultName": "production-vault",
"ScheduleExpression": "cron(0 5 ? * * *)",
"StartWindowMinutes": 60,
"CompletionWindowMinutes": 120,
"Lifecycle": {
"DeleteAfterDays": 30
}
}]
}'
# Assign resources to backup plan
aws backup create-backup-selection \
--backup-plan-id <PLAN_ID> \
--backup-selection '{
"SelectionName": "s3-prod-resources",
"IamRoleArn": "arn:aws:iam::ACCOUNT:role/service-role/AWSBackupDefaultServiceRole",
"Resources": [
"arn:aws:s3:::my-bucket-name"
]
}'
The AWS backup vault serves as the storage location for your backups. It's crucial to manage access to these backups to prevent unauthorized access and ensure data security.
Not mapped to specific CIS Controls v7 or v8 in the provided documentation.