소스 정보
- 저장소
- CyberStrikeus/CyberStrike
- 최근 소스 활동
- 2026년 4월 13일 11:05
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,653
- 포크
- 254
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-azure-compute-20-5명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cis-azure-compute-20.5 |
| description | Ensure 'Enable Data Access Authentication Mode' is 'Checked' |
| category | cis-azure-compute |
| version | 2.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","virtual-machines","vm","disks","encryption"] |
| cis_id | 20.5 |
| cis_benchmark | CIS Microsoft Azure Compute Services Benchmark v2.0.0 |
| tech_stack | ["azure"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Data Access Authentication Mode provides a method of uploading or exporting Virtual Machine Disks.
Enabling data access authentication mode adds a layer of protection using an Entra ID role to further restrict users from creating and using Secure Access Signature (SAS) tokens for exporting a detached managed disk or virtual machine state. Users will need the Data operator for managed disk role within Entra ID in order to download a VHD or VM Guest state using a secure URL.
To apply this setting, the virtual machine to which the disk or disks are attached will need to be powered down and have its disk detached. Users without the Data operator for managed disk role within Entra ID will not be able to export VHD or VM guest state using the secure download URL.
The following restrictions apply and must be considered when determining if this recommendation is appropriate for your environment:
Part A. Select the Virtual Machine to Evaluate
Virtual Machines service.Part B. Evaluate each Virtual Machine Disk individually
Settings menu item and click Disks.Settings menu item, and click Disk Export.Ensure that Enable Data Access Authentication Mode is checked.
Repeat Part B for each Disk attached to a VM. Repeat Parts A and B to evaluate all Disks in all VMs.
Run the following command for each disk:
Get-AzDisk -ResourceGroupName <resource_group_name> -DiskName <disk_name>
Ensure the DataAccessAuthMode setting displays AzureActiveDirectory next to it.
Run the following command for each disk:
az disk show --disk-name <disk_name> --resource-group <resource_group_name>
Ensure the dataAccessAuthMode setting is set to AzureActiveDirectory.
The dataAccessAuthMode setting should be set to AzureActiveDirectory for all VM disks.
Part A. Select the Virtual Machine to Remediate
Virtual Machines service.Part B. Remediate each Virtual Machine Disk individually
Settings menu item and click Disks.Settings menu item, and click Disk Export.check the checkbox next to Enable Data Access Authentication Mode.
Repeat Part B for each Disk attached to a VM. Repeat Parts A and B to remediate all Disks in all VMs.
Ensure that each disk is detached from its associated Virtual Machine before proceeding. Once detached, run the following for each disk:
$disk = Get-AzDisk -ResourceGroupName <resource_group_name> -DiskName <disk_name>
$disk.DataAccessAuthMode = 'AzureActiveDirectory'
Update-AzDisk -ResourceGroup <resource_group_name> -DiskName $disk.Name -Disk $disk
Ensure that each disk is detached from its associated Virtual Machine before proceeding. Once detached, run the following for each disk:
az disk update --name <disk_name> --resource-group <resource_group_name> --data-access-auth-mode AzureActiveDirectory
By default, Data Access Authentication Mode is Disabled.
Level 1 | Automated