Control: 1.2.1 Ensure Trusted Locations Are Defined
Description
Microsoft Entra ID Conditional Access allows an organization to configure Named locations
and configure whether those locations are trusted or untrusted. These settings provide organizations the means to specify Geographical locations for use in conditional access policies, or define actual IP addresses and IP ranges and whether or not those IP addresses and/or ranges are trusted by the organization.
Defining trusted source IP addresses or ranges helps organizations create and enforce Conditional Access policies around those trusted or untrusted IP addresses and ranges. Users authenticating from trusted IP addresses and/or ranges may have less access restrictions or access requirements when compared to users that try to authenticate to Azure Active Directory from untrusted locations or untrusted source IP addresses/ranges.
Remediation
From Azure Portal
- Navigate to the
Microsoft Entra ID Conditional Access
Blade. - Click on the
Named locations
blade. - Within the
Named locations
blade, click onIP ranges location
. - Enter a name for this location setting in the
Name
text box. - Click on the
+
sign. - Add an IP Address Range in CIDR notation inside the text box that appears.
- Click on the
Add
button. - Repeat steps 5 through 7 for each IP Range that needs to be added.
- If the information entered are trusted ranges, select the
Mark as trusted location
check box. - Once finished, click on
Create
.
From PowerShell
Create a new trusted IP-based Named location policy
[System.Collections.Generic.List`1[Microsoft.Open.MSGraph.Model.IpRange]]$ipR anges = @()$ipRanges.Add("<first IP range in CIDR notation>")$ipRanges.Add("<second IP range in CIDR notation>")$ipRanges.Add("<third IP range in CIDR notation>") New-AzureADMSNamedLocationPolicy -OdataType "#microsoft.graph.ipNamedLocation" -DisplayName "<name of IP Named location policy> -IsTrusted $true -IpRanges $ipRanges
Set an existing IP-based Named location policy to trusted
Set-AzureADMSNamedLocationPolicy -PolicyId "<ID of the policy>" -OdataType "#microsoft.graph.ipNamedLocation" -IsTrusted $true
Default Value
By default, no locations are configured under the Named locations
blade within the Azure AD Conditional Access blade.
Usage
Run the control in your terminal:
powerpipe control run azure_compliance.control.cis_v210_1_2_1
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run azure_compliance.control.cis_v210_1_2_1 --share
SQL
This control uses a named query:
ad_manual_control