用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-euc-4-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-euc-4.2 |
| description | Ensure MFA is enabled for WorkDoc users |
| category | cis-end-user-compute |
| version | 1.2.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","end-user-compute","workdocs","mfa","authentication"] |
| cis_id | 4.2 |
| cis_benchmark | CIS AWS End User Compute Services Benchmark v1.2.0 |
| tech_stack | ["aws"] |
| cwe_ids | ["CWE-308"] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Multi-Factor Authentication (MFA) adds an extra layer of authentication assurance beyond traditional username and password. With MFA enabled, when a user signs in to Amazon WorkDocs, they will be prompted for their user name and password as well as for an authentication code from their MFA token.
Enabling MFA provides increased security to a user name and password as it requires the user to possess a solution that displays a time-sensitive authentication code.
To enable MFA for Amazon WorkDocs you require a RADIUS server or a plugin to a RADIUS server already implemented in your environment.
Multi-factor authentication is not available for Simple AD.
You can enable multi-factor authentication for AD Connector if you have Active Directory running on-premises or in EC2 instances.
Perform the steps below to confirm MFA setup and configuration.
https://console.aws.amazon.com/directoryservicev2https://console.aws.amazon.com/zocalo/Multi-factor authentication is available when the RADIUS Status reads Enabled.
aws ds describe-directories \
--region us-east-1 \
--output table \
--query 'DirectoryDescriptions[*].DirectoryId'
--------------------
|DescribeDirectories|
+------------------+
| d-12345abcde |
| d-abcd012345 |
| d-aabbcc1234 |
+------------------+
aws ds describe-directories \
--region us-east-1 \
--directory-ids d-12345abcde \
--query 'DirectoryDescriptions[*].RadiusStatus'
[]
If describe-directories command output returns an empty array, as shown in the example above, there is no RADIUS MFA server configured for the selected AD Directory, therefore the resource does not have Multi-Factor Authentication (MFA) protection enabled. Refer to the remediation below.
RADIUS MFA is enabled for WorkDocs directories in Directory Service, and WorkDocs sites have MFA configured.
Perform the following steps to setup MFA on the server and in WorkDocs:
To enable multi-factor authentication in WorkDocs:
https://console.aws.amazon.com/zocalo/Multi-factor authentication is available when the RADIUS Status changes to Enabled. To enable RADIUS-based MFA protection for your Active Directory (AD) Connector directories, perform the following actions:
Note: Enabling Multi-Factor authentication for AD Connector directories using the AWS Management Console is not currently supported.
aws ds enable-radius \
--region us-east-1 \
--directory-id <value> \
--radius-settings { "RadiusServers": ["<your-radius-server>.com"],"RadiusPort": 1812,"RadiusTimeout": 20,"RadiusRetries": 3,"SharedSecret": "radiusmfa","AuthenticationProtocol": "MS-CHAPv2","DisplayLabel": "RADIUS Multi-Factor Authentication","UseSameUsername": true }
By default, MFA is not enabled in AWS Workdocs.
v8:
v7:
Level 2