用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-compute-5-7命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-compute-5.7 |
| description | Ensure you are using an IAM policy to manage access to buckets in Lightsail |
| category | cis-compute |
| version | 1.1.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","compute","lightsail","iam","buckets","policy","access-control","s3"] |
| cis_id | 5.7 |
| cis_benchmark | CIS AWS Compute Services Benchmark v1.1.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-compute-5.8","cis-aws-compute-5.9"] |
| prerequisites | [] |
| severity_boost | {} |
The following policy grants a user access to manage a specific bucket in the Amazon Lightsail object storage service.
This policy grants access to buckets through the Lightsail console, the AWS Command Line Interface (AWS CLI), AWS API, and AWS SDKs.
Users who don't have this policy will experience errors when viewing the Objects tab of the bucket management page in the Lightsail console.
All services, click IAM under Security, Identity, & Compliance.PoliciesFilter policies by property or policy name and press enterLightsail and press enterPermissions tab is selected.{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "LightsailAccess",
"Effect": "Allow",
"Action": "lightsail:*",
"Resource": "*"
},
{
"Sid":
lightsail refer to the remediation below.Policy usage tabN/A - This is managed through the AWS Console IAM Policies.
An IAM policy should exist that grants Lightsail and S3 bucket access, and it should be attached to the appropriate users or groups.
All services, click IAM under Security, Identity, & Compliance.PoliciesCreate policyJSON tab{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "LightsailAccess",
"Effect": "Allow",
"Action": "lightsail:*",
"Resource": "*"
},
{
"Sid": "S3BucketAccess",
"Effect": "Allow",
"Action": "s3:*",
"Resource": ["arn:aws:s3:::<BucketName>/*", "arn:aws:s3:::<BucketName>"]
}
]
}
Next tagsNext reviewName* and give it a name that contains "Lightsail"Create policyFilter policies by property or policy name and press enterLightsail and press enterPolicy usage tabAttachAttach policyN/A - This is managed through the AWS Console IAM Policies.
No IAM policy for Lightsail bucket access exists by default. Access must be explicitly configured.
| 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. | x | x | x |
| v7 | 14.6 Protect Information through Access Control Lists - Protect all information stored on systems with file system, network share, claims, application, or database specific access control lists. These controls will enforce the principle that only authorized individuals should have access to the information based on their need to access the information as a part of their responsibilities. | x | x | x |
Level 1 | Manual