用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-compute-2-10命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-2.10 |
| description | Ensure unused ENIs are removed |
| category | cis-compute |
| version | 1.1.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","compute","ec2","eni","network-interfaces","unused","cleanup"] |
| cis_id | 2.10 |
| cis_benchmark | CIS AWS Compute Services Benchmark v1.1.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-compute-2.7","cis-aws-compute-2.2.4"] |
| prerequisites | [] |
| severity_boost | {} |
Identify and delete any unused Amazon AWS Elastic Network Interfaces in order to adhere to best practices and to avoid reaching the service limit. An AWS Elastic Network Interface (ENI) is pronounced unused when is not attached anymore to an EC2 instance.
Removing unused ENIs helps maintain a clean environment, reduces potential attack surface, and avoids reaching service limits.
Deleting an ENI is permanent. Ensure the ENI is truly unused before removal.
aws ec2 describe-network-interfaces --region us-east-1 --output json --filters Name=status,Values=available --query "NetworkInterfaces[*].{ENI:NetworkInterfaceId}"
ENIs within the current region.NOTE Repeat the audit process for all other regions used.
NETWORK & SECURITY, click Network Interfaces.available, refer to the remediation below.ENIs within the current region.NOTE Repeat the audit process for all other regions used.
The CLI command should return an empty list, indicating no ENIs are in the available (unattached) state.
aws ec2 delete-network-interface --region us-east-1 --network-interface-id eni-1234abcd
ENIs within the current region.NOTE Repeat the audit process for all other regions used.
NETWORK & SECURITY, click Network Interfaces.Delete.ENIs listed in the audit within the current region.NOTE Repeat the audit process for all other regions used.
ENIs are not automatically cleaned up when detached from instances.
No specific references provided in the benchmark for this control.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 12.2 Establish and Maintain a Secure Network Architecture | x | x | |
| v7 | 11.1 Maintain Standard Security Configurations for Network Devices | x | x |
Level 1 | Manual