用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-azure-database-9-5命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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-azure-database-9.5 |
| description | Ensure that Microsoft Entra authentication is Configured for SQL Servers |
| category | cis-azure-database |
| version | 2.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","sql-database","sql-server"] |
| cis_id | 9.5 |
| cis_benchmark | CIS Microsoft Azure Database Services Benchmark v2.0.0 |
| tech_stack | ["azure"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Use Microsoft Entra authentication for authentication with SQL Database to manage credentials in a single place.
Microsoft Entra authentication is a mechanism to connect to Microsoft Azure SQL Database and SQL Data Warehouse by using identities in the Microsoft Entra ID directory. With Entra ID authentication, identities of database users and other Microsoft services can be managed in one central location. Central ID management provides a single place to manage database users and simplifies permission management.
This will create administrative overhead with user account and permission management. For further security on these administrative accounts, you may want to consider licensing which supports features like Multi Factor Authentication.
SQL servers.Microsoft Entra admin under the Settings section.Admin Name under the Microsoft Entra admin section.To list SQL Server Admins on a specific server:
az sql server ad-admin list --resource-group <resource-group> --server <server>
Print a list of all SQL Servers to find which one you want to audit:
Get-AzSqlServer
Audit a list of Administrators on a Specific Server:
Get-AzSqlServerActiveDirectoryAdministrator -ResourceGroupName <resource group name> -ServerName <server name>
Ensure Output shows DisplayName set to AD account.
Policy ID: 1f314764-cb73-4fc9-b863-8eca98ac36e9
Name: 'An Azure Active Directory administrator should be provisioned for SQL servers'
A Microsoft Entra admin should be configured for each SQL server with a valid Admin Name.
SQL servers.Microsoft Entra admin.Set admin.Save.az ad user show --id
For each Server, set AD Admin:
az sql server ad-admin create --resource-group <resource group name> --server <server name> --display-name <display name> --object-id <object id of user>
For each Server, set Entra ID Admin:
Set-AzSqlServerActiveDirectoryAdministrator -ResourceGroupName <resource group name> -ServerName <server name> -DisplayName "<Display name of AD account to set as DB administrator>"
Entra ID Authentication for SQL Database/Server is not enabled by default.