Azure Active Directory (Azure AD), Microsoft'un kimlik ve erişim yönetimi için bulut tabanlı hizmetidir. Çalışanların Microsoft 365, Azure portalı ve birçok diğer SaaS uygulaması dahil olmak üzere kuruluş içi ve dışındaki kaynaklara giriş yapmasını sağlamak için önemli bir rol oynar. Azure AD'nin tasarımı, kimlik doğrulama, yetkilendirme ve kullanıcı yönetimi gibi temel kimlik hizmetlerini sunmaya odaklanmaktadır.
Azure AD'nin önemli özellikleri arasında çok faktörlü kimlik doğrulama ve koşullu erişim bulunur ve diğer Microsoft güvenlik hizmetleriyle sorunsuz entegrasyon sağlar. Bu özellikler, kullanıcı kimliklerinin güvenliğini önemli ölçüde artırır ve organizasyonların erişim politikalarını etkin bir şekilde uygulamasına olanak tanır. Microsoft'un bulut hizmetleri ekosisteminin temel bir bileşeni olarak, Azure AD, kullanıcı kimliklerinin bulut tabanlı yönetimi için hayati öneme sahiptir.
AzureAD, Azure AD nesnelerinin tüm özelliklerini göstermeyen ve Azure kaynakları bilgilerine erişmek için kullanılamayan Microsoft'un Azure AD yönetimi için bir PowerShell modülüdür.
Az PowerShell, PowerShell komut satırından Azure kaynaklarını yönetmek için bir modüldür.
Bağlantı
azlogin#This will open the browserazlogin-u<username>-p<password>#Specify user and passwordazlogin--identity#Use the current machine managed identity (metadata)az login --identity -u /subscriptions/<subscriptionId>/resourcegroups/myRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myID #Login with user managed identity
# Login as service principalaz login --service-principal -u http://azure-cli-2016-08-05-14-31-15 -p VerySecret --tenant contoso.onmicrosoft.com #With password
az login --service-principal -u http://azure-cli-2016-08-05-14-31-15 -p ~/mycertfile.pem --tenant contoso.onmicrosoft.com #With cert
# Request access token (ARM)azaccountget-access-token# Request access token for different resource. Supported tokens: aad-graph, arm, batch, data-lake, media, ms-graph, oss-rdbms
azaccountget-access-token--resource-typeaad-graph# If you want to configure some defaultsazconfigure# Get user logged-in alreadyazadsigned-in-usershow# Helpazfind"vm"# Find vm commandsazvm-h# Get subdomainsazaduserlist--query-examples# Get examples
Connect-AzureAD#Open browser# Using credentials$passwd =ConvertTo-SecureString"Welcome2022!"-AsPlainText -Force$creds =New-Object System.Management.Automation.PSCredential ("test@corp.onmicrosoft.com", $passwd)Connect-AzureAD-Credential $creds# Using tokens## AzureAD cannot request tokens, but can use AADGraph and MSGraph tokens to connectConnect-AzureAD-AccountId test@corp.onmicrosoft.com -AadAccessToken $token
Connect-AzAccount#Open browser# Using credentials$passwd =ConvertTo-SecureString"Welcome2022!"-AsPlainText -Force$creds =New-Object System.Management.Automation.PSCredential("test@corp.onmicrosoft.com", $passwd)Connect-AzAccount-Credential $creds# Get Access Token(Get-AzAccessToken).Token# Request access token to other endpoints: AadGraph, AnalysisServices, Arm, Attestation, Batch, DataLake, KeyVault, MSGraph, OperationalInsights, ResourceManager, Storage, Synapse
Get-AzAccessToken-ResourceTypeName MSGraph(Get-AzAccessToken-Resource "https://graph.microsoft.com").Token# Conenct with access tokenConnect-AzAccount-AccountId test@corp.onmicrosoft.com -AccessToken $tokenConnect-AzAccount-AccessToken $token -GraphAccessToken $graphaccesstoken -AccountId <ACCOUNT-ID>## The -AccessToken is from management.azure.com# Connect with Service principal/enterprise app secret$password =ConvertTo-SecureString'KWEFNOIRFIPMWL.--DWPNVFI._EDWWEF_ADF~SODNFBWRBIF'-AsPlainText -Force$creds =New-ObjectSystem.Management.Automation.PSCredential('2923847f-fca2-a420-df10-a01928bec653', $password)Connect-AzAccount-ServicePrincipal -Credential $creds -Tenant 29sd87e56-a192-a934-bca3-0398471ab4e7d#All the Azure AD cmdlets have the format *-AzAD*Get-Command*azad*#Cmdlets for other Azure resources have the format *Az*Get-Command*az*
# Request tokens to access endpoints# ARMcurl"$IDENTITY_ENDPOINT?resource=https://management.azure.com&api-version=2017-09-01"-Hsecret:$IDENTITY_HEADER# Vaultcurl"$IDENTITY_ENDPOINT?resource=https://vault.azure.net&api-version=2017-09-01"-Hsecret:$IDENTITY_HEADER
Herhangi bir programla Azure'a CLI üzerinden giriş yaptığınızda, Microsoft'a ait bir kiracıya ait bir Azure Uygulaması kullanıyorsunuz. Bu Uygulamalar, hesabınızda oluşturabileceğiniz uygulamalar gibi, bir istemci kimliğine sahiptir. Konsolda görebileceğiniz izin verilen uygulama listelerinde hepsini göremeyebilirsiniz, ancak varsayılan olarak hepsi izinlidir.
Örneğin, bir powershell betiği kimlik doğrulaması için 1950a258-227b-4e31-a9cf-717495945fc2 istemci kimliğine sahip bir uygulama kullanır. Uygulama konsolda görünmese bile, bir sistem yöneticisi bu uygulamayı engelleyebilir, böylece kullanıcılar bu uygulama üzerinden bağlantı kuran araçları kullanamazlar.
Ancak, Azure'a bağlanmanıza izin verecek diğer istemci kimlikleri bulunmaktadır:
# The important part is the ClientId, which identifies the application to login inside Azure$token =Invoke-Authorize-Credential $credential `-ClientId '1dfb5f98-f363-4b0f-b63a-8d20ada1e62d'`-Scope 'Files.Read.All openid profile Sites.Read.All User.Read email'`-Redirect_Uri "https://graphtryit-staging.azurewebsites.net/"`-Verbose -Debug `-InformationAction Continue$token =Invoke-Authorize-Credential $credential `-ClientId '65611c08-af8c-46fc-ad20-1888eb1b70d9'`-Scope 'openid profile Sites.Read.All User.Read email'`-Redirect_Uri "chrome-extension://imjekgehfljppdblckcmjggcoboemlah"`-Verbose -Debug `-InformationAction Continue$token =Invoke-Authorize-Credential $credential `-ClientId 'd3ce4cf8-6810-442d-b42e-375e14710095'`-Scope 'openid'`-Redirect_Uri "https://graphexplorer.azurewebsites.net/"`-Verbose -Debug `-InformationAction Continue
Kullanıcılar
# Enumerate usersazaduserlist--outputtableazaduserlist--query"[].userPrincipalName"# Get info of 1 userazadusershow--id"test@corp.onmicrosoft.com"# Search "admin" usersazaduserlist--query"[].displayName"|findstr/i"admin"azaduserlist--query"[?contains(displayName,'admin')].displayName"# Search attributes containing the word "password"azaduserlist|findstr/i"password"|findstr/v"null,"# All users from AzureADazaduserlist--query"[].{osi:onPremisesSecurityIdentifier,upn:userPrincipalName}[?osi==null]"azaduserlist--query"[?onPremisesSecurityIdentifier==null].displayName"# All users synced from on-premazaduserlist--query"[].{osi:onPremisesSecurityIdentifier,upn:userPrincipalName}[?osi!=null]"azaduserlist--query"[?onPremisesSecurityIdentifier!=null].displayName"# Get groups where the user is a memberazaduserget-member-groups--id<email># Get roles assigned to the userazroleassignmentlist--include-groups--include-classic-administratorstrue--assignee<email>
Azure AD
# Enumerate UsersGet-AzureADUser-All $trueGet-AzureADUser-All $true| select UserPrincipalName# Get info of 1 userGet-AzureADUser-ObjectId test@corp.onmicrosoft.com | fl# Search "admin" usersGet-AzureADUser-SearchString "admin"#Search admin at the begining of DisplayName or userPrincipalNameGet-AzureADUser-All $true|?{$_.Displayname-match"admin"} #Search "admin" word in DisplayName# Get all attributes of a userGet-AzureADUser-ObjectId test@defcorphq.onmicrosoft.com|%{$_.PSObject.Properties.Name}# Search attributes containing the word "password"Get-AzureADUser -All $true |%{$Properties = $_;$Properties.PSObject.Properties.Name | % {if ($Properties.$_ -match 'password') {"$($Properties.UserPrincipalName) - $_ - $($Properties.$_)"}}}
# All users from AzureAD# All users from AzureADGet-AzureADUser-All $true|?{$_.OnPremisesSecurityIdentifier-eq$null}# All users synced from on-premGet-AzureADUser-All $true|?{$_.OnPremisesSecurityIdentifier-ne$null}# Objects created by a/any userGet-AzureADUser [-ObjectId<email>] |Get-AzureADUserCreatedObject# Devices owned by a userGet-AzureADUserOwnedDevice-ObjectId test@corp.onmicrosoft.com# Objects owned by a specific userGet-AzureADUserOwnedObject-ObjectId test@corp.onmicrosoft.com# Get groups & roles where the user is a memberGet-AzureADUserMembership-ObjectId 'test@corp.onmicrosoft.com'# Get devices owned by a userGet-AzureADUserOwnedDevice-ObjectId test@corp.onmicrosoft.com# Get devices registered by a userGet-AzureADUserRegisteredDevice-ObjectId test@defcorphq.onmicrosoft.com# Apps where a user has a role (role not shown)Get-AzureADUser-ObjectId roygcain@defcorphq.onmicrosoft.com |Get-AzureADUserAppRoleAssignment| fl *# Get Administrative Units of a user$userObj =Get-AzureADUser-Filter "UserPrincipalName eq 'bill@example.com'"Get-AzureADMSAdministrativeUnit | where { Get-AzureADMSAdministrativeUnitMember -Id $_.Id | where { $_.Id -eq $userObj.ObjectId } }
Azure AD, Microsoft'un bulut tabanlı kimlik ve erişim yönetimi hizmetidir. Azure AD, kullanıcıların ve uygulamaların kimlik doğrulamasını ve yetkilendirilmesini sağlar. Azure AD, Azure hizmetlerine ve diğer Microsoft hizmetlerine erişim sağlamak için kullanılır.
Azure AD'yi pentest etmek için Az PowerShell kullanabilirsiniz. Az PowerShell, Azure kaynaklarını yönetmek için kullanılan bir komut satırı aracıdır. Azure AD'yi pentest etmek için aşağıdaki adımları izleyebilirsiniz:
Az PowerShell'i yükleyin ve yapılandırın.
Azure AD'ye bağlanın.
Azure AD'deki kullanıcıları, grupları ve rolleri listeleyin.
Azure AD'deki uygulamaları ve bunlara erişim izinlerini listeleyin.
Azure AD'deki kimlik doğrulama ayarlarını kontrol edin.
Azure AD'deki güvenlik politikalarını kontrol edin.
Azure AD'deki denetim kayıtlarını kontrol edin.
Azure AD'deki hizmet prensiplerini kontrol edin.
Azure AD'deki kimlik doğrulama yöntemlerini kontrol edin.
Azure AD'deki kullanıcı hesaplarını ve parolalarını test edin.
Azure AD'deki oturum açma işlemlerini izleyin ve denetleyin.
Azure AD'deki erişim izinlerini kontrol edin.
Azure AD'deki güvenlik duvarı ayarlarını kontrol edin.
Azure AD'deki çok faktörlü kimlik doğrulama ayarlarını kontrol edin.
Azure AD'deki uygulama erişim izinlerini kontrol edin.
Azure AD'deki veri sızıntılarını kontrol edin.
Bu adımları izleyerek Azure AD'yi pentest edebilir ve güvenlik açıklarını tespit edebilirsiniz.
# Enumerate usersGet-AzADUser# Get details of a userGet-AzADUser-UserPrincipalName test@defcorphq.onmicrosoft.com# Search user by stringGet-AzADUser-SearchString "admin"#Search at the beginnig of DisplayNameGet-AzADUser|?{$_.Displayname-match"admin"}# Get roles assigned to a userGet-AzRoleAssignment-SignInName test@corp.onmicrosoft.com
Her kullanıcıya MFA eklemek çok önerilir, ancak bazı şirketler bunu ayarlamayabilir veya bir Koşullu Erişim ile ayarlayabilir: Kullanıcı, belirli bir konumdan, tarayıcıdan veya bazı koşullardan giriş yaparsa MFA gereklidir. Bu politikalar, doğru şekilde yapılandırılmazsa atlamalara neden olabilir. Kontrol edin:
# Enumerate groupsaz ad group listaz ad group list --query "[].[displayName]"-o table# Get info of 1 groupaz ad group show --group <group># Get "admin" groupsaz ad group list --query "[].displayName"| findstr /i "admin"az ad group list --query "[?contains(displayName,'admin')].displayName"# All groups from AzureADaz ad group list --query "[].{osi:onPremisesSecurityIdentifier,displayName:displayName,description:description}[?osi==null]"
az ad group list --query "[?onPremisesSecurityIdentifier==null].displayName"# All groups synced from on-premaz ad group list --query "[].{osi:onPremisesSecurityIdentifier,displayName:displayName,description:description}[?osi!=null]"
az ad group list --query "[?onPremisesSecurityIdentifier!=null].displayName"# Get members of groupaz ad group member list --group <group>--query "[].userPrincipalName"-o table# Check if member of groupaz ad group member check --group "VM Admins"--member-id <id># Get which groups a group is member ofaz ad group get-member-groups -g "VM Admins"# Get Apps where a group has a role (role not shown)Get-AzureADGroup-ObjectId <id>|Get-AzureADGroupAppRoleAssignment| fl *
Azure AD
# Enumerate GroupsGet-AzureADGroup-All $true# Get info of 1 groupGet-AzADGroup-DisplayName <resource_group_name>| fl# Get "admin" groupsGet-AzureADGroup-SearchString "admin"| fl #Groups starting by "admin"Get-AzureADGroup-All $true|?{$_.Displayname-match"admin"} #Groups with the word "admin"# Get groups allowing dynamic membershipGet-AzureADMSGroup|?{$_.GroupTypes-eq'DynamicMembership'}# All groups that are from Azure ADGet-AzureADGroup-All $true|?{$_.OnPremisesSecurityIdentifier-eq$null}# All groups that are synced from on-prem (note that security groups are not synced)Get-AzureADGroup-All $true|?{$_.OnPremisesSecurityIdentifier-ne$null}# Get members of a groupGet-AzureADGroupMember-ObjectId <group_id># Get roles of groupGet-AzureADMSGroup-SearchString "Contoso_Helpdesk_Administrators"#Get group idGet-AzureADMSRoleAssignment-Filter "principalId eq '69584002-b4d1-4055-9c94-320542efd653'"# Get Administrative Units of a group$groupObj =Get-AzureADGroup-Filter "displayname eq 'TestGroup'"Get-AzureADMSAdministrativeUnit | where { Get-AzureADMSAdministrativeUnitMember -Id $_.Id | where {$_.Id -eq $groupObj.ObjectId} }
Azure AD, Microsoft'un bulut tabanlı kimlik ve erişim yönetimi hizmetidir. Azure AD, kullanıcıların ve uygulamaların kimlik doğrulamasını ve yetkilendirilmesini sağlar. Azure AD, Azure hizmetlerine ve diğer Microsoft hizmetlerine erişim sağlamak için kullanılır.
Azure AD'yi pentest etmek için Az PowerShell kullanabilirsiniz. Az PowerShell, Azure kaynaklarını yönetmek için kullanılan bir komut satırı aracıdır. Azure AD'yi pentest etmek için aşağıdaki adımları izleyebilirsiniz:
Az PowerShell'i yükleyin ve yapılandırın.
Azure AD'ye bağlanın.
Azure AD'deki kullanıcıları, grupları ve rolleri listeleyin.
Azure AD'deki uygulamaları ve bunlara erişim izinlerini listeleyin.
Azure AD'deki kimlik doğrulama ayarlarını kontrol edin.
Azure AD'deki güvenlik politikalarını kontrol edin.
Azure AD'deki günlükleri ve denetim kayıtlarını kontrol edin.
Azure AD'deki erişim kontrollerini test edin.
Azure AD'deki hata mesajlarını analiz edin ve olası zayıf noktaları belirleyin.
Azure AD'deki kullanıcı hesaplarını ve parolalarını test edin.
Azure AD'deki oturum açma işlemlerini izleyin ve izinsiz erişim girişimlerini tespit edin.
Bu adımları izleyerek Azure AD'yi pentest edebilir ve güvenlik açıklarını tespit edebilirsiniz.
# Get all groupsGet-AzADGroup# Get details of a groupGet-AzADGroup-ObjectId <id># Search group by stringGet-AzADGroup-SearchString "admin"| fl *#Search at the beginnig of DisplayNameGet-AzADGroup|?{$_.Displayname-match"admin"}# Get members of groupGet-AzADGroupMember-GroupDisplayName <resource_group_name># Get roles of groupGet-AzRoleAssignment-ResourceGroupName <resource_group_name>
Gruba kullanıcı ekleme
Grubun sahipleri yeni kullanıcıları gruba ekleyebilir
Gruplar dinamik olabilir, bu da temel olarak bir kullanıcının belirli koşulları karşılaması durumunda bir gruba eklenmesi anlamına gelir. Elbette, koşullar özniteliklere dayanıyorsa ve bir kullanıcı bunları kontrol edebiliyorsa, bu özelliği diğer gruplara girmek için kötüye kullanabilir.
Dinamik grupları nasıl kötüye kullanacağınızı aşağıdaki sayfada kontrol edin:
PowerShell terminolojisinde Hizmet İlkesi Azure portalında (web) Kurumsal Uygulamalar olarak adlandırılır.
# Get Service Principalsazadsplist--allazadsplist--all--query"[].[displayName]"-otable# Get details of one SPazadspshow--id00000000-0000-0000-0000-000000000000# Search SP by stringazadsplist--all--query"[?contains(displayName,'app')].displayName"# Get owner of service principalazadspownerlist--id<id>--query"[].[displayName]"-otable# Get service principals owned by the current userazadsplist--show-mine# List apps that have password credentialsazadsplist--all--query"[?passwordCredentials != null].displayName"# List apps that have key credentials (use of certificate authentication)azadsplist-all--query"[?keyCredentials != null].displayName"
Azure AD
# Get Service PrincipalsGet-AzureADServicePrincipal-All $true# Get details about a SPGet-AzureADServicePrincipal-ObjectId <id>| fl *# Get SP by string name or IdGet-AzureADServicePrincipal-All $true|?{$_.DisplayName-match"app"} | flGet-AzureADServicePrincipal-All $true|?{$_.AppId-match"103947652-1234-5834-103846517389"}# Get owner of SPGet-AzureADServicePrincipal-ObjectId <id>|Get-AzureADServicePrincipalOwner|fl *# Get objects owned by a SPGet-AzureADServicePrincipal-ObjectId <id>|Get-AzureADServicePrincipalOwnedObject# Get objects created by a SPGet-AzureADServicePrincipal-ObjectId <id>|Get-AzureADServicePrincipalCreatedObject# Get groups where the SP is a memberGet-AzureADServicePrincipal|Get-AzureADServicePrincipalMembershipGet-AzureADServicePrincipal-ObjectId <id>|Get-AzureADServicePrincipalMembership|fl *
Azure AD, Microsoft'un bulut tabanlı kimlik ve erişim yönetimi hizmetidir. Azure AD, kullanıcıların ve uygulamaların kimlik doğrulamasını ve yetkilendirilmesini sağlar. Azure AD, Azure hizmetlerine ve diğer Microsoft hizmetlerine erişim sağlamak için kullanılır.
Azure AD'yi pentest etmek için Az PowerShell kullanabilirsiniz. Az PowerShell, Azure kaynaklarını yönetmek için kullanılan bir komut satırı aracıdır. Azure AD'yi pentest etmek için aşağıdaki adımları izleyebilirsiniz:
Az PowerShell'i yükleyin ve yapılandırın.
Azure AD'ye bağlanın.
Azure AD'deki kullanıcıları, grupları ve rolleri listeleyin.
Azure AD'deki uygulamaları ve bunlara erişim izinlerini listeleyin.
Azure AD'deki kimlik doğrulama ayarlarını kontrol edin.
Azure AD'deki güvenlik politikalarını kontrol edin.
Azure AD'deki günlükleri ve denetim kayıtlarını kontrol edin.
Azure AD'deki erişim kontrollerini test edin.
Azure AD'deki hata mesajlarını analiz edin ve olası zayıf noktaları belirleyin.
Azure AD'deki kullanıcı hesaplarını ve parolalarını test edin.
Azure AD'deki oturum açma işlemlerini izleyin ve izinsiz erişim girişimlerini tespit edin.
Bu adımları izleyerek Azure AD'yi pentest edebilir ve güvenlik açıklarını tespit edebilirsiniz.
# Get SPsGet-AzADServicePrincipal# Get info of 1 SPGet-AzADServicePrincipal-ObjectId <id># Search SP by stringGet-AzADServicePrincipal|?{$_.DisplayName-match"app"}# Get roles of a SPGet-AzRoleAssignment-ServicePrincipalName <String>
Azure AD
Introduction
Azure Active Directory (Azure AD) is a cloud-based identity and access management service provided by Microsoft. It allows organizations to manage user identities and control access to resources in the Azure cloud environment.
Azure AD Security
When performing a penetration test on Azure AD, there are several areas to focus on:
User Enumeration
User enumeration involves identifying valid user accounts in Azure AD. This can be done through various methods, such as querying the Azure AD Graph API or using tools like az command-line interface.
Password Attacks
Password attacks involve attempting to crack or guess user passwords in Azure AD. This can be done through techniques like brute-forcing, password spraying, or using password cracking tools.
Privilege Escalation
Privilege escalation involves gaining higher levels of access in Azure AD. This can be achieved by exploiting misconfigurations, vulnerabilities, or weak access controls.
Token Manipulation
Token manipulation involves manipulating authentication tokens in Azure AD to gain unauthorized access to resources. This can be done through techniques like token replay, token theft, or token forgery.
Federation Attacks
Federation attacks involve exploiting vulnerabilities in the federation trust between Azure AD and other identity providers. This can lead to unauthorized access to Azure AD resources.
Account Takeover
Account takeover involves gaining unauthorized access to user accounts in Azure AD. This can be done through techniques like password spraying, phishing, or exploiting weak authentication mechanisms.
Conclusion
Azure AD is a critical component of the Azure cloud environment, and securing it is essential for maintaining the overall security of an organization's Azure resources. By understanding the various security risks and vulnerabilities associated with Azure AD, organizations can take proactive measures to protect their Azure AD environment.
</details>
### Roller
<div data-gb-custom-block data-tag="tabs"></div>
<div data-gb-custom-block data-tag="tab" data-title='az cli'>
```bash
# Get roles
az role definition list
# Get assigned roles
az role assignment list --all --query "[].roleDefinitionName"
az role assignment list --all | jq '.[] | .roleDefinitionName,.scope'
# Get info of 1 role
az role definition list --name "AzureML Registry User"
# Get only custom roles
az role definition list --custom-role-only
# Get only roles assigned to the resource group indicated
az role definition list --resource-group <resource_group>
# Get only roles assigned to the indicated scope
az role definition list --scope <scope>
# Get all the principals a role is assigned to
az role assignment list --all --query "[].{principalName:principalName,principalType:principalType,resourceGroup:resourceGroup,roleDefinitionName:roleDefinitionName}[?roleDefinitionName=='<ROLE_NAME>']"
Azure AD
# Get all available role templatesGet-AzureADDirectoryroleTemplate# Get enabled roles (Assigned roles)Get-AzureADDirectoryRoleGet-AzureADDirectoryRole-ObjectId <roleID>#Get info about the role# Get custom roles - use AzureAdPreviewGet-AzureADMSRoleDefinition|?{$_.IsBuiltin-eq$False} | select DisplayName# Users assigned a role (Global Administrator)Get-AzureADDirectoryRole-Filter "DisplayName eq 'Global Administrator'"|Get-AzureADDirectoryRoleMemberGet-AzureADDirectoryRole-ObjectId <id>| fl# Roles of the Administrative Unit (who has permissions over the administrative unit and its members)Get-AzureADMSScopedRoleMembership-Id <id>| fl *
Azure AD, Microsoft'un bulut tabanlı kimlik ve erişim yönetimi hizmetidir. Azure AD, kullanıcıların ve uygulamaların kimlik doğrulamasını ve yetkilendirilmesini sağlar. Azure AD, Azure hizmetlerine ve diğer Microsoft hizmetlerine erişim sağlamak için kullanılır.
Azure AD'yi pentest etmek için Az PowerShell kullanabilirsiniz. Az PowerShell, Azure kaynaklarını yönetmek için kullanılan bir komut satırı aracıdır. Azure AD'yi pentest etmek için aşağıdaki adımları izleyebilirsiniz:
Az PowerShell'i yükleyin ve yapılandırın.
Azure AD'ye bağlanın.
Azure AD'deki kullanıcıları, grupları ve rolleri listeleyin.
Azure AD'deki uygulamaları ve bunlara erişim izinlerini listeleyin.
Azure AD'deki kimlik doğrulama ayarlarını kontrol edin.
Azure AD'deki güvenlik politikalarını kontrol edin.
Azure AD'deki günlükleri ve denetim kayıtlarını kontrol edin.
Azure AD'deki zayıf noktaları ve güvenlik açıklarını tespit etmek için otomatik araçlar kullanın.
Azure AD'yi pentest etmek için Az PowerShell'i kullanmak, Azure AD'nin güvenlik açıklarını tespit etmek ve düzeltmek için önemli bir adımdır. Bu sayede Azure AD'nin güvenliğini artırabilir ve potansiyel saldırılara karşı korunabilirsiniz.
# Get role assignments on the subscriptionGet-AzRoleDefinition# Get Role definitionGet-AzRoleDefinition-Name "Virtual Machine Command Executor"# Get roles of a user or resourceGet-AzRoleAssignment-SignInName test@corp.onmicrosoft.comGet-AzRoleAssignment -Scope /subscriptions/<subscription-id>/resourceGroups/<res_group_name>/providers/Microsoft.Compute/virtualMachines/<vm_name>
Azure AD
Introduction
Azure Active Directory (Azure AD) is a cloud-based identity and access management service provided by Microsoft. It allows organizations to manage user identities and control access to resources in the Azure cloud environment.
Azure AD Security
When performing a penetration test on Azure AD, there are several areas to focus on:
User Enumeration
User enumeration involves identifying valid user accounts in Azure AD. This can be done through various methods, such as querying the Azure AD Graph API or using tools like az command-line interface.
Password Attacks
Password attacks involve attempting to crack or guess user passwords in Azure AD. This can be done through techniques like brute-forcing, dictionary attacks, or password spraying.
Privilege Escalation
Privilege escalation involves gaining higher levels of access in Azure AD. This can be achieved by exploiting misconfigurations, vulnerabilities, or weak access controls.
Token Manipulation
Token manipulation involves manipulating authentication tokens in Azure AD to gain unauthorized access to resources. This can be done through techniques like token replay attacks or token forging.
Federation Attacks
Federation attacks involve exploiting vulnerabilities in the federation trust between Azure AD and other identity providers. This can lead to unauthorized access to Azure AD resources.
Data Exfiltration
Data exfiltration involves stealing or leaking sensitive data from Azure AD. This can be done through techniques like exploiting misconfigurations, using malicious applications, or leveraging weak permissions.
Conclusion
Azure AD is a critical component of the Azure cloud environment, and securing it is essential for maintaining the overall security of an organization's resources. By understanding the various security risks and implementing appropriate countermeasures, organizations can better protect their Azure AD environment.
# Get permissions over a resource using ARM directly$Token = (Get-AzAccessToken).Token$URI = 'https://management.azure.com/subscriptions/b413826f-108d-4049-8c11-d52d5d388768/resourceGroups/Research/providers/Microsoft.Compute/virtualMachines/infradminsrv/providers/Microsoft.Authorization/permissions?api-version=2015-07-01'
$RequestParams =@{Method ='GET'Uri = $URIHeaders =@{'Authorization'="Bearer $Token"}}(Invoke-RestMethod @RequestParams).value
Cihazlar
# If you know how to do this send a PR!
Azure AD
# Enumerate DevicesGet-AzureADDevice-All $true| fl *# List all the active devices (and not the stale devices)Get-AzureADDevice-All $true|?{$_.ApproximateLastLogonTimeStamp-ne$null}# Get owners of all devicesGet-AzureADDevice-All $true|Get-AzureADDeviceRegisteredOwnerGet-AzureADDevice -All $true | %{if($user=Get-AzureADDeviceRegisteredOwner -ObjectId $_.ObjectID){$_;$user.UserPrincipalName;"`n"}}
# Registred users of all the devicesGet-AzureADDevice-All $true|Get-AzureADDeviceRegisteredUserGet-AzureADDevice -All $true | %{if($user=Get-AzureADDeviceRegisteredUser -ObjectId $_.ObjectID){$_;$user.UserPrincipalName;"`n"}}
# Get dives managed using IntuneGet-AzureADDevice-All $true|?{$_.IsCompliant-eq"True"}# Get devices owned by a userGet-AzureADUserOwnedDevice-ObjectId test@corp.onmicrosoft.com# Get Administrative Units of a deviceGet-AzureADMSAdministrativeUnit | where { Get-AzureADMSAdministrativeUnitMember -ObjectId $_.ObjectId | where {$_.ObjectId -eq $deviceObjId} }
Bir cihaz (VM) AzureAD katılımlı ise, AzureAD kullanıcıları giriş yapabilir.
Ayrıca, oturum açan kullanıcı cihazın Sahibi ise, o kullanıcı yerel yönetici olacaktır.
Uygulamalar
Uygulamalar, portalda Uygulama Kayıtlarıdır (Kurumsal Uygulamalar değil).
Ancak, her Uygulama Kaydı aynı isme sahip bir Kurumsal Uygulama (Hizmet İlkesi) oluşturur.
Ayrıca, Uygulama çok kiracılı bir Uygulama ise, başka bir Kurumsal Uygulama (Hizmet İlkesi) aynı isimle o kiracıda oluşturulur.
Bir Uygulama oluşturulduğunda, 2 tür izin verilir:
Hizmet İlkesine verilen İzinler
Kullanıcı adına uygulamanın sahip olabileceği ve kullanabileceği İzinler.
# List Appsazadapplistazadapplist--query"[].[displayName]"-otable# Get info of 1 Appazadappshow--id00000000-0000-0000-0000-000000000000# Search App by stringazadapplist--query"[?contains(displayName,'app')].displayName"# Get the owner of an applicationazadappownerlist--id<id>--query"[].[displayName]"-otable# List all the apps with an application passwordazadapplist--query"[?passwordCredentials != null].displayName"# List apps that have key credentials (use of certificate authentication)azadapplist--query"[?keyCredentials != null].displayName"
Azure AD
# List all registered applicationsGet-AzureADApplication-All $true# Get details of an applicationGet-AzureADApplication-ObjectId <id>| fl *# List all the apps with an application passwordGet-AzureADApplication-All $true|%{if(Get-AzureADApplicationPasswordCredential-ObjectID $_.ObjectID){$_}}# Get owner of an applicationGet-AzureADApplication-ObjectId <id>|Get-AzureADApplicationOwner|fl *
Azure AD, Microsoft'un bulut tabanlı kimlik ve erişim yönetimi hizmetidir. Azure AD, kullanıcıların ve uygulamaların kimlik doğrulamasını ve yetkilendirilmesini sağlar. Azure AD, Azure hizmetlerine ve diğer Microsoft hizmetlerine erişim sağlamak için kullanılır.
Azure AD'yi pentest etmek için Az PowerShell kullanabilirsiniz. Az PowerShell, Azure kaynaklarını yönetmek için kullanılan bir komut satırı aracıdır. Azure AD'yi pentest etmek için aşağıdaki adımları izleyebilirsiniz:
Az PowerShell'i yükleyin ve yapılandırın.
Azure AD'ye bağlanın.
Azure AD'deki kullanıcıları, grupları ve rolleri listeleyin.
Azure AD'deki uygulamaları ve bunlara erişim izinlerini listeleyin.
Azure AD'deki kimlik doğrulama ayarlarını kontrol edin.
Azure AD'deki güvenlik politikalarını kontrol edin.
Azure AD'deki günlükleri ve denetim kayıtlarını kontrol edin.
Azure AD'deki erişim kontrollerini test edin.
Azure AD'deki hata mesajlarını analiz edin ve olası zayıf noktaları belirleyin.
Azure AD'deki kullanıcı hesaplarını ve parolalarını test edin.
Azure AD'deki oturum açma işlemlerini izleyin ve izinsiz erişim girişimlerini tespit edin.
Bu adımları izleyerek Azure AD'yi pentest edebilir ve güvenlik açıklarını tespit edebilirsiniz.
# Get AppsGet-AzADApplication# Get details of one AppGet-AzADApplication-ObjectId <id># Get App searching by stringGet-AzADApplication|?{$_.DisplayName-match"app"}# Get Apps with passwordGet-AzADAppCredential
Bir uygulama, AppRoleAssignment.ReadWrite izniyle kendisine rol vererek Global Admin'e yükseltilebilir.
Daha fazla bilgi için burayı kontrol edin.
Bir uygulamanın bir belirteç istediğinde kimliğini kanıtlamak için kullandığı gizli dizedir.
Bu parolayı bulursanız, kiracı içindeki hizmet başkanı olarak erişebilirsiniz.
Bu parola yalnızca oluşturulduğunda görünür (değiştirebilirsiniz, ancak tekrar alamazsınız).
Uygulamanın sahibi, ona bir parola ekleyebilir (böylece onun yerine geçebilir).
Bu hizmet başkanlarıyla yapılan oturum açmalar riskli olarak işaretlenmez ve MFA'ya sahip olmazlar.
Uygulamalar ve (Kurumsal Uygulamalar veya Hizmet Başkanları) Arasındaki Fark
Azure'da bir uygulama ile bir Hizmet Başkanı arasındaki fark:
Uygulama/Uygulama Kayıtları: Azure AD'nizde bulunan uygulamalardır
Hizmet Başkanı/Kurumsal Uygulamalar: Azure AD'nizdeki güvenlik nesneleridir ve Azure Dizini'nde ayrıcalıklara sahip olabilirler ve uygulamanıza veya üçüncü taraf bir uygulamaya bağlıdır
Eğer izinler çok hassassa, bir yönetici bu izinleri onaylamak zorunda kalabilir.
Bir uygulama, Üçüncü taraf kiracıda çalışabilir ve onu kullanmaya başladığınızda ve erişim verdiğinizde, ihtiyaç duyduğu bilgilere erişim sağlamak için kendi kiracınızda bir Kurumsal Uygulama/Hizmet Başkanı oluşturulur:
Yönetim Birimleri
Kullanıcıların daha iyi yönetimi için kullanılır.
Yönetim birimleri, bir roldeki izinleri tanımladığınız kuruluşunuzun herhangi bir bölümüne izinleri sınırlar. Örneğin, yönetim birimlerini kullanarak Yardım Masası Yöneticisi rolünü bölgesel destek uzmanlarına devredebilir ve yalnızca destekledikleri bölgedeki kullanıcıları yönetmelerine izin verebilirsiniz.
Bu nedenle, yönetici birimine roller atayabilir ve üyeleri bu rolleri alır.
AzureAD
Azure Active Directory (Azure AD) is a cloud-based identity and access management service provided by Microsoft. It is used to manage user identities and control access to resources in the Azure cloud environment.
Enumeration
User Enumeration
To enumerate users in Azure AD, you can use the following methods:
Azure Portal: Navigate to the Azure AD section in the Azure Portal and view the list of users.
Azure AD Graph API: Use the Azure AD Graph API to query for user information.
Microsoft Graph API: Use the Microsoft Graph API to query for user information.
Group Enumeration
To enumerate groups in Azure AD, you can use the following methods:
Azure Portal: Navigate to the Azure AD section in the Azure Portal and view the list of groups.
Azure AD Graph API: Use the Azure AD Graph API to query for group information.
Microsoft Graph API: Use the Microsoft Graph API to query for group information.
Application Enumeration
To enumerate applications in Azure AD, you can use the following methods:
Azure Portal: Navigate to the Azure AD section in the Azure Portal and view the list of applications.
Azure AD Graph API: Use the Azure AD Graph API to query for application information.
Microsoft Graph API: Use the Microsoft Graph API to query for application information.
Exploitation
Password Spray Attack
A password spray attack is a type of brute-force attack where a single password is tested against multiple user accounts. This attack is often used to bypass account lockout policies that are triggered by multiple failed login attempts.
To perform a password spray attack against Azure AD, you can use the following methods:
Azure Portal: Use the Azure Portal to manually test a single password against multiple user accounts.
Azure AD Graph API: Use the Azure AD Graph API to automate the password spray attack.
Microsoft Graph API: Use the Microsoft Graph API to automate the password spray attack.
Password Hash Cracking
If you have obtained the password hashes of user accounts in Azure AD, you can attempt to crack them using password cracking tools such as Hashcat or John the Ripper.
Token Impersonation
If you have obtained a valid access token for a user account in Azure AD, you can use it to impersonate that user and perform actions on their behalf. This can be done by modifying the token's claims or by using the token to authenticate requests to Azure AD.
Privilege Escalation
To escalate privileges in Azure AD, you can try the following methods:
Group Membership: Check if the user account is a member of any privileged groups in Azure AD.
Application Permissions: Check if the user account has any privileged application permissions in Azure AD.
Role-Based Access Control (RBAC): Check if the user account has any privileged RBAC roles assigned in Azure AD.
Post-Exploitation
Data Exfiltration
To exfiltrate data from Azure AD, you can use the following methods:
Azure Portal: Manually download or export data from the Azure Portal.
Azure AD Graph API: Use the Azure AD Graph API to programmatically retrieve and exfiltrate data.
Microsoft Graph API: Use the Microsoft Graph API to programmatically retrieve and exfiltrate data.
Persistence
To maintain persistence in Azure AD, you can try the following methods:
Service Principals: Create a service principal with the necessary permissions to access Azure AD resources.
Application Registrations: Register an application in Azure AD and configure it to have the necessary permissions.
Conditional Access Policies: Configure conditional access policies to control access to Azure AD resources.
Lateral Movement
To move laterally within Azure AD, you can try the following methods:
Group Membership: Add the compromised user account to privileged groups in Azure AD.
Application Permissions: Grant the compromised user account privileged application permissions in Azure AD.
Role-Based Access Control (RBAC): Assign privileged RBAC roles to the compromised user account in Azure AD.
Covering Tracks
To cover your tracks in Azure AD, you can try the following methods:
Audit Logs: Delete or modify audit logs to remove evidence of your activities.
Azure AD Sign-Ins: Delete or modify sign-in logs to remove evidence of your activities.
Azure AD Directory Logs: Delete or modify directory logs to remove evidence of your activities.
# Get Administrative UnitsGet-AzureADMSAdministrativeUnitGet-AzureADMSAdministrativeUnit-Id <id># Get ID of admin unit by string$adminUnitObj =Get-AzureADMSAdministrativeUnit-Filter "displayname eq 'Test administrative unit 2'"# List the users, groups, and devices affected by the administrative unitGet-AzureADMSAdministrativeUnitMember-Id <id># Get the roles users have over the members of the AUGet-AzureADMSScopedRoleMembership-Id <id>| fl #Get role ID and role members
Azure AD Kimlik Koruma (AIP)
Azure AD Kimlik Koruma (AIP), Azure Active Directory'deki kullanıcı kimliklerini tehlikeye atılmaktan korumak için otomatik tespit ve düzeltme kullanarak bir güvenlik hizmetidir. AIP sürekli olarak kullanıcı oturum açmalarını ve kimlik yapılandırmalarını izler ve risk değerlendirmesi yapar, çok faktörlü kimlik doğrulama gerektirme veya potansiyel olarak tehlikeli faaliyetleri engelleme gibi uygun güvenlik önlemlerini otomatik olarak uygular. Bu, kuruluşların kimlik temelli güvenlik ihlallerini önlemelerine yardımcı olur.
Akış:
Azure AD Kimlik Koruma, kullanıcı etkinliklerini izler ve oturum açmalar, kimlik doğrulama olayları ve diğer ilgili etkinlikler hakkında veri toplar.
Hizmet, bu verileri analiz etmek ve potansiyel güvenlik tehditlerini tespit etmek için makine öğrenimi algoritmalarını kullanır.
Azure AD Kimlik Koruma, tehdide (örneğin, oturum açma) bir risk seviyesi atar ve gerektiğinde otomatik bir eylem gerçekleştirmek için bir uyarı oluşturur.
Azure AD Şifre Koruma (APP)
Azure AD Şifre Koruma (APP), Azure Active Directory'de zayıf şifreleri engelleyerek güçlü şifre politikalarını zorlamaya yardımcı olan bir güvenlik özelliğidir. APP, yaygın olarak kullanılan zayıf şifreleri ve bunların varyantlarını engelleyerek şifreyle ilgili ihlallerin riskini azaltır. Hem bulut düzeyinde hem de yerinde Active Directory'de uygulanabilir ve kuruluş genelinde şifre güvenliğini artırır.