소스 정보
- 저장소
- CyberStrikeus/CyberStrike
- 최근 소스 활동
- 2026년 4월 13일 04:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,653
- 포크
- 254
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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.