소스 정보
- 저장소
- 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-5-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-5.3 |
| description | Ensure Storage Classes are Configured |
| category | cis-storage-services |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","storage","s3","storage-classes","cost-optimization","lifecycle","intelligent-tiering","glacier","level-2"] |
| cis_id | 5.3 |
| cis_benchmark | CIS AWS Storage Services Benchmark v1.0.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-storage-5.1","cis-aws-storage-5.2"] |
| prerequisites | ["cis-aws-storage-5.1"] |
| severity_boost | {} |
Amazon S3 offers various storage classes to optimize cost and performance based on data access patterns and retention needs. Standard Storage is for frequently accessed data, while Standard-IA and One Zone-IA are for infrequent access, with the latter offering cost savings by storing in a single Availability Zone. Intelligent-Tiering automatically moves data between access tiers based on usage, and Glacier and Glacier Deep Archive provide low-cost options for long-term archival storage with varying retrieval times. Each class balances availability, durability, performance, and cost, enabling a tailored storage strategy to meet specific requirements.
This approach ensures frequently accessed data is readily available, while infrequently accessed data is stored cost-effectively, balancing availability, durability, and cost.
Not configuring appropriate storage classes can result in:
# List objects with their storage classes
aws s3api list-objects-v2 \
--bucket <bucket-name> \
--query 'Contents[].[Key,StorageClass,Size,LastModified]' \
--output table
aws s3api head-object \
--bucket <bucket-name> \
--key <object-key> \
--query
aws s3api get-bucket-lifecycle-configuration \
--bucket <bucket-name>
aws s3api list-bucket-intelligent-tiering-configurations \
--bucket <bucket-name>
aws s3api list-objects-v2 \
--bucket <bucket-name> \
--query | | -c
S3 storage classes should be properly configured based on data access patterns:
Available Storage Classes:
S3 Standard:
S3 Standard-IA (Infrequent Access):
S3 One Zone-IA:
S3 Intelligent-Tiering:
S3 Glacier Flexible Retrieval (formerly S3 Glacier):
S3 Glacier Deep Archive:
Configure Storage Class for New Upload:
Change Storage Class for Existing Object:
Configure Lifecycle Policy:
Upload Object with Specific Storage Class:
# Upload to Standard-IA
aws s3 cp <local-file> s3://<bucket-name>/<key> \
--storage-class STANDARD_IA
# Upload to Intelligent-Tiering
aws s3 cp <local-file> s3://<bucket-name>/<key> \
--storage-class INTELLIGENT_TIERING
# Upload to Glacier Flexible Retrieval
aws s3 cp <local-file> s3://<bucket-name>/<key> \
--storage-class GLACIER
# Upload to Glacier Deep Archive
aws s3 cp <local-file> s3://<bucket-name>/<key> \
--storage-class DEEP_ARCHIVE
Change Storage Class of Existing Object:
aws s3api copy-object \
--bucket <bucket-name> \
--copy-source <bucket-name>/<key> \
--key <key> \
--storage-class INTELLIGENT_TIERING \
--metadata-directive COPY
Configure Lifecycle Policy:
aws s3api put-bucket-lifecycle-configuration \
--bucket <bucket-name> \
--lifecycle-configuration file://lifecycle.json
Example lifecycle.json:
{
"Rules": [
{
"Id": "Archive-old-data",
"Status": "Enabled",
"Filter": {
"Prefix": ""
},
"Transitions": [
{
"Days": 30,
"StorageClass": "STANDARD_IA"
},
{
"Days": 90,
"StorageClass": "GLACIER"
},
{
"Days": 365,
"StorageClass": "DEEP_ARCHIVE"
}
],
"Expiration": {
"Days": 2555
}
}
]
}
Enable Intelligent-Tiering:
aws s3api put-bucket-intelligent-tiering-configuration \
--bucket <bucket-name> \
--id <config-id> \
--intelligent-tiering-configuration file://intelligent-tiering.json
Example intelligent-tiering.json:
{
"Id": "EntireBucket",
"Status": "Enabled",
"Tierings": [
{
"Days": 90,
"AccessTier": "ARCHIVE_ACCESS"
},
{
"Days": 180,
"AccessTier": "DEEP_ARCHIVE_ACCESS"
}
]
}
By default:
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 3.3 Configure Data Access Control Lists Configure data access control lists based on a user's need to know. Apply data access control lists, also known as access permissions, to local and remote file systems, databases, and applications. | ● | ● | ● |
| v8 | 8.3 Ensure Adequate Audit Log Storage Ensure that logging destinations maintain adequate storage to comply with the enterprise's audit log management process. | ● | ● | ● |
| v7 | 7.8 Implement DMARC and Enable Receiver-Side Verification To lower the chance of spoofed or modified emails from valid domains, implement Domain-based Message Authentication, Reporting and Conformance (DMARC) policy and verification, starting by implementing the Sender Policy Framework (SPF) and the DomainKeys Identified Mail(DKIM) standards. | ● | ● |
Level 2