Feature: Add IP Geolocation Lookup to Get-HawkUserEntraIDSignInLog Function #256
Labels
priority/medium
For standard priority
status/backlog
In backlog / validated
type/feature
New feature or request
Milestone
What problem would this feature solve?
Currently,
Get-HawkUserEntraIDSignInLog
retrieves sign-in logs from Microsoft Entra ID but does not provide IP geolocation information for the sign-in events. This makes it harder for security analysts to:The existing
Get-HawkUserUALSignInLog
function already provides this capability through IP geolocation lookups, but this functionality needs to be extended to the newer Entra ID sign-in log retrieval function to maintain feature parity and provide consistent analysis capabilities across both methods.Proposed Solution
Enhance
Get-HawkUserEntraIDSignInLog
to:-ResolveIPLocations
switch parameter to matchGet-HawkUserUALSignInLog
functionality.Get-IPGeolocation
internal function to lookup location data for each unique IP address.country
,region
,city
) to the output objects.Test-MicrosoftIP
function.The function should maintain the existing error handling and output formatting while adding the new geolocation capabilities.
Technical Requirements
Add
ResolveIPLocations
switch parameterReuse existing internal functions:
Get-IPGeolocation
for location lookups.Test-MicrosoftIP
for Microsoft IP detection.IPlocationCache
global variable for caching.Add new properties to output objects:
CountryName
RegionCode
RegionName
City
KnownMicrosoftIP
Handle
null
/invalid IP addresses gracefully.Maintain existing performance optimization techniques like IP caching.
Ensure proper error handling for geolocation service failures.
Implementation Approach
Update function parameter block to include
ResolveIPLocations
switch. ```Reuse existing caching mechanism to prevent duplicate lookups.
Add documentation for the new parameter and functionality.
Update output formatting to include new location fields.
Acceptance Criteria
-ResolveIPLocations
switch parameter.The text was updated successfully, but these errors were encountered: