Hi all,
I'm trying to use Minemeld to create an EDL that includes only the IP address ranges used by Azure AD.
I've tried a few things, but can't seem to get it to work.
My current setup is as follows
Miner = cloudIPsWithServiceTags
Processor = based on stdlib_aggregatorIPv4Generic but using the following config
infilters: - actions: - accept conditions: - __method == 'withdraw' name: accept withdraws - actions: - accept conditions: - type == 'IPv4' - azure_system_service == 'AzureAD' name: accept IPv4 whitelist_prefixes: - wl
Output = feedHCGreen
The current config kinda works. It returns 7 IP address ranges, instead of the 158 that are included in the JSON. I think what is happening is that it only returns the ones that are unique to the AzureActiveDirectory name space. All the others are duplicated elsewhere in the JSON. Any ideas for how to get it to output all the values that are shown under AzureActiveDirectory, not just the unique ones?
The JSON URL is https://www.microsoft.com/en-us/download/confirmation.aspx?id=56519
The output I am currently getting is:
104.40.168.0-104.40.168.63
13.71.201.64-13.71.201.127
13.74.104.0-13.74.104.63
13.87.16.0-13.87.16.63
20.190.128.0-20.190.191.255
40.126.0.0-40.126.63.255
51.140.208.0-51.140.208.63
I've also tried to modify the miner by using the following, but neither seem to work. They return all the indicators.
extractor: values[?id=='AzureActiveDirectory'].properties[].addressPrefixes[] or extractor: values[?id=='AzureActiveDirectory']
Any help would be appreciated
Dan
... View more