用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-compute-3-2命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-3.2 |
| description | Ensure 'assignPublicIp' is set to 'DISABLED' for Amazon ECS services |
| category | cis-compute |
| version | 1.1.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","compute","ecs","containers","networking","public-ip","services"] |
| cis_id | 3.2 |
| cis_benchmark | CIS AWS Compute Services Benchmark v1.1.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-compute-3.14"] |
| prerequisites | [] |
| severity_boost | {} |
Ensure that assignPublicIp is set to DISABLED for Amazon ECS services, to restrict direct exposure of containers to the public internet.
Enabling public IP assignment could expose container application servers to unintended or unauthorized access.
Disabling assignPublicIp introduces administrative, operational, and potential cost overhead due to the need to configure and maintain private networking and associated resources.
Clusters.Services, click the name of a service.Configuration and networking.Network configuration, ensure Auto-assign public IP is set to Turned off.Run the following command to list clusters:
aws ecs list-clusters
Run the following command to list services in a cluster:
aws ecs list-services --cluster <cluster-arn>
Run the following command to view the details of a service:
aws ecs describe-services --cluster <cluster-arn> --services <service-arn>
Under networkConfiguration > awsvpcConfiguration, ensure assignPublicIp is set to DISABLED.
Repeat for each cluster and service.
assignPublicIp should be set to DISABLED under networkConfiguration > awsvpcConfiguration for all ECS services.
No specific console remediation steps provided. Use the CLI remediation below.
For each service requiring remediation, run the following command to set assignPublicIp to DISABLED:
aws ecs update-service --cluster <cluster-arn> --service <service-arn> --network-configuration '{"awsvpcConfiguration":{"subnets":["<subnet-id>"],"securityGroups":["<security-group-id>"],"assignPublicIp":"DISABLED"}}'
By default, assignPublicIp is set to ENABLED.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 3.3 Configure Data Access Control Lists | x | x | x |
| v7 | 14.6 Protect Information through Access Control Lists | x | x | x |
Level 1 | Automated