Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-euc-4-2명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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