소스 정보
- 저장소
- 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-2-3명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cis-aws-storage-2.3 |
| description | Ensure the proper configuration of EBS storage |
| category | cis-storage-services |
| version | 1.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","storage","ebs","encryption","kms","volume-configuration"] |
| cis_id | 2.3 |
| cis_benchmark | CIS AWS Storage Services Benchmark v1.0.0 |
| tech_stack | ["aws"] |
| cwe_ids | ["CWE-311"] |
| chains_with | ["cis-aws-storage-2.1","cis-aws-storage-2.4","cis-aws-storage-2.5"] |
| prerequisites | ["cis-aws-storage-2.1"] |
| severity_boost | {} |
All computer instances need to have a device on which to store files. EBS is built on top of EC2 instances as a block storage device.
Remember that we are working with cloud computing. Rather than purchasing and manually installing disk drives on a server, AWS allows you to virtually add storage using Elastic Block Store (EBS).
Proper EBS configuration is essential for:
Failure to properly configure EBS storage can lead to data loss, performance issues, increased costs, security vulnerabilities, and operational downtime. Ensuring correct configuration is crucial to maintain data integrity, efficiency, cost-effectiveness, security, and reliability.
Open the Amazon EC2 Console
Select Volumes
Create Volume
Attach Volume to Instance
Format and Mount the Volume (on the instance)
lsblksudo mkfs -t ext4 /dev/xvdf for ext4 filesystem)sudo mkdir /mnt/data)sudo mount /dev/xvdf /mnt/data)Configure Automatic Mounting (optional)
/etc/fstab file to add an entry for the new volume to ensure it mounts automatically on reboot/dev/xvdf /mnt/data ext4 defaults,nofail 0 2# List all EBS volumes
aws ec2 describe-volumes \
--query 'Volumes[].[VolumeId,Size,VolumeType,State,Encrypted]' \
--output table
# Check for unencrypted volumes
aws ec2 describe-volumes \
--filters Name=encrypted,Values=false \
--query 'Volumes[].[VolumeId,Size,State]' \
--output table
# Get volume details including IOPS and throughput
aws ec2 describe-volumes \
--volume-ids vol-xxxxxxxxx
# Check if volumes have appropriate tags
aws ec2 describe-volumes \
--query 'Volumes[?Tags==`null`].[VolumeId,Size]' \
--output table
Follow the audit procedure steps above to:
# Create encrypted EBS volume
aws ec2 create-volume \
--volume-type gp3 \
--size 100 \
--encrypted \
--kms-key-id arn:aws:kms:region:account:key/key-id \
--availability-zone us-east-1a \
--tag-specifications 'ResourceType=volume,Tags=[{Key=Name,Value=DataVolume},{Key=Environment,Value=Production}]'
# Modify volume type (requires volume to be in available state or attached to running instance)
aws ec2 modify-volume \
--volume-id vol-xxxxxxxxx \
--volume-type gp3 \
--iops 3000 \
--throughput 125
# Enable encryption for existing volume (requires snapshot and recreation)
# 1. Create snapshot
aws ec2 create-snapshot --volume-id vol-xxxxxxxxx --description "Pre-encryption snapshot"
# 2. Copy snapshot with encryption
aws ec2 copy-snapshot \
--source-snapshot-id snap-xxxxxxxxx \
--source-region us-east-1 \
--encrypted \
--kms-key-id arn:aws:kms:region:account:key/key-id
# 3. Create new encrypted volume from encrypted snapshot
aws ec2 create-volume \
--snapshot-id snap-yyyyyyyyy \
--availability-zone us-east-1a
By default, new EBS volumes are not encrypted unless you enable encryption by default in your AWS account settings.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 4.2 Establish and Maintain a Secure Configuration Process for Network Infrastructure | ● | ● | ● |
| v7 | 11.1 Maintain Standard Security Configurations for Network Devices | ● | ● |
CIS Control v8 - 4.2 Establish and Maintain a Secure Configuration Process for Network Infrastructure: Establish and maintain a secure configuration process for network devices. Review and update documentation annually, or when significant enterprise changes occur that could impact this Safeguard.
CIS Control v7 - 11.1 Maintain Standard Security Configurations for Network Devices: Maintain standard, documented security configuration standards for all authorized network devices.