用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-foundations-2-13命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-foundations-2.13 |
| description | Ensure IAM users receive permissions only through groups |
| category | cis-iam |
| version | 7.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","iam","groups","permissions","policies","least-privilege"] |
| cis_id | 2.13 |
| cis_benchmark | CIS AWS Foundations Benchmark v7.0.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-foundations-2.14","cis-aws-foundations-2.15"] |
| prerequisites | [] |
| severity_boost | {} |
IAM users are granted access to services, functions, and data through IAM policies. There are four ways to assign policies to a user:
Only assigning permissions through IAM groups is recommended.
Assigning IAM policies through groups centralizes permissions management and aligns access with organizational roles. This reduces complexity and lowers the likelihood of excessive or inconsistent permissions.
Directly assigning policies to users increases the risk of misconfigured or excessive permissions and makes access management more difficult to audit and maintain.
aws iam list-users --query 'Users[*].UserName' --output text
aws iam list-attached-user-policies --user-name <user-name>
aws iam list-user-policies --user-name <user-name>
For each IAM user, both list-attached-user-policies and list-user-policies should return empty results. All permissions should be assigned through IAM groups only.
Create and configure a group:
User Groups and then click Create GroupNextCreate GroupAdd users to the group:
User GroupsAdd users to groupAdd usersRemove direct user policies:
UsersPermissions tabaws iam create-group --group-name <group-name>
aws iam attach-group-policy --group-name <group-name> --policy-arn <policy-arn>
aws iam add-user-to-group --user-name <user-name> --group-name <group-name>
aws iam detach-user-policy --user-name <user-name> --policy-arn <policy-arn>
aws iam delete-user-policy --user-name <user-name> --policy-name <policy-name>
By default, AWS allows IAM policies to be attached directly to users, groups, or roles. There are no restrictions preventing direct user policies unless enforced through organizational standards.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 6.8 Define and Maintain Role-Based Access Control - Define and maintain role-based access control, through determining and documenting the access rights necessary for each role within the enterprise to successfully carry out its assigned duties. Perform access control reviews of enterprise assets to validate that all privileges are authorized, on a recurring schedule at a minimum annually, or more frequently. | x | ||
| v7 | 16.1 Maintain an Inventory of Authentication Systems - Maintain an inventory of each of the organization's authentication systems, including those located onsite or at a remote service provider. | x | x |
| Techniques / Sub-techniques | Tactics | Mitigations |
|---|---|---|
| T1078.004 | TA0007, TA0008, TA0043 | M1018 |
Level 1 | Automated